|
@@ -6,6 +6,7 @@ import cn.iocoder.yudao.framework.errorcode.core.loader.ErrorCodeLoader;
|
|
|
import cn.iocoder.yudao.framework.errorcode.core.loader.ErrorCodeLoaderImpl;
|
|
|
import cn.iocoder.yudao.module.system.api.errorcode.ErrorCodeApi;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -17,6 +18,7 @@ import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
* @author 芋道源码
|
|
|
*/
|
|
|
@Configuration
|
|
|
+@ConditionalOnProperty(prefix = "yudao.error-code", value = "enable", matchIfMissing = true) // 允许使用 yudao.error-code.enable=false 禁用访问日志
|
|
|
@EnableConfigurationProperties(ErrorCodeProperties.class)
|
|
|
@EnableScheduling // 开启调度任务的功能,因为 ErrorCodeRemoteLoader 通过定时刷新错误码
|
|
|
public class YudaoErrorCodeConfiguration {
|