21 lines
347 B
Java
21 lines
347 B
Java
|
|
package com.whdc.component;
|
||
|
|
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
import javax.annotation.PostConstruct;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author 李赛
|
||
|
|
* @date 2022-07-17 15:33
|
||
|
|
*/
|
||
|
|
@Component
|
||
|
|
@Slf4j
|
||
|
|
public class MyPostConstruct {
|
||
|
|
|
||
|
|
@PostConstruct
|
||
|
|
public void initCache() {
|
||
|
|
log.debug("加载缓存");
|
||
|
|
}
|
||
|
|
}
|