LicenseGenerateAutoConfiguration.java
560 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
package com.huaheng.spring.boot.autoconfigure;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
* 许可证核心配置
*
* @author Rong.Jia
* @date 2022/03/10
*/
@Slf4j
@Configuration
@ComponentScan("com.huaheng.license.core")
public class LicenseGenerateAutoConfiguration {
public LicenseGenerateAutoConfiguration(){
log.info("============ license generate starter initialization! ===========");
}
}