@PostConstruct
用来修饰 非静态的void()方法。
@PostConstruct
在整个Bean初始化中的执行顺序:
Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)
@Component
public class PageUtils {
private static boolean isQueryTotalCount; // 每次查询DB时,是否进行count查询
@Value("${page-helper.count-total-or-not:true}")
private boolean isQueryTotalFromConfig;
@PostConstruct
private void init() {
isQueryTotalCount = isQueryTotalFromConfig;
}
public static boolean isQueryTotalCount() {
return isQueryTotalCount;
}
}