|
@@ -12,6 +12,7 @@ import cn.iocoder.yudao.module.infra.api.logger.ApiAccessLogApi;
|
|
|
import cn.iocoder.yudao.module.infra.api.logger.ApiErrorLogApi;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
|
|
|
+import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
|
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -36,6 +37,7 @@ public class YudaoApiLogAutoConfiguration {
|
|
|
* 创建 ApiAccessLogFilter Bean,记录 API 请求日志
|
|
|
*/
|
|
|
@Bean
|
|
|
+ @ConditionalOnProperty(prefix = "yudao.access-log", value = "enable", matchIfMissing = true) // 允许使用 yudao.access-log.enable=false 禁用访问日志
|
|
|
public FilterRegistrationBean<ApiAccessLogFilter> apiAccessLogFilter(WebProperties webProperties,
|
|
|
@Value("${spring.application.name}") String applicationName,
|
|
|
ApiAccessLogFrameworkService apiAccessLogFrameworkService) {
|