LicenseVerifyAutoConfiguration.java
700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.huaheng.spring.boot.autoconfigure;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
* 许可证核心配置
*
* @author Rong.Jia
* @date 2022/03/10
*/
@Slf4j
@Configuration
@EnableConfigurationProperties(LicenseVerifyProperties.class)
@ComponentScan("com.huaheng.license.verify")
public class LicenseVerifyAutoConfiguration {
public LicenseVerifyAutoConfiguration(){
log.info("============ license verify starter initialization! ===========");
}
}