648540858
2022-09-09 221f99c764b51c3cd284c6e5a41492c26c5c7ffc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.genersoft.iot.vmp.conf.druid;
 
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.Import;
 
import java.lang.annotation.*;
 
/**
 * druid监控支持注解
 *
 * @author
 * {@link DruidConfiguration} druid监控页面安全配置支持
 * {@link ServletComponentScan} druid监控页面需要扫描servlet
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({
        DruidConfiguration.class,
})
@ServletComponentScan
public @interface EnableDruidSupport {
}