@PostConstruct 的执行时机

2024-01-10 06:19:08

@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注解

文章来源:https://blog.csdn.net/weixin_37646636/article/details/135491998
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。