cl
4 天以前 450a97460b086663bb07b418b48354b0a3125e85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.vincent.rsf.httpaudit.config;
 
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
 
/**
 * 简易日志查询页与开放查询接口(默认开启;simple-ui-enabled=false 关闭)
 */
@Configuration
@ConditionalOnProperty(prefix = "http-audit", name = "simple-ui-enabled", havingValue = "true", matchIfMissing = true)
@ComponentScan(basePackages = "com.vincent.rsf.httpaudit.open")
public class HttpAuditOpenUiAutoConfiguration {
}