@PostConstruct 的执行时机

@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;
    }
}

参考

@PostConstruct注解

你可能感兴趣的:(SpringBoot,java)