fxkh-txl-service/src/main/java/com/whdc/component/MyPostConstruct.java

21 lines
347 B
Java
Raw Normal View History

2023-09-13 17:15:39 +08:00
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("加载缓存");
}
}