@PostConstruct与@PreConstruct注解
Posted 把书读薄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PostConstruct与@PreConstruct注解相关的知识,希望对你有一定的参考价值。
,Servlet增加了两个影响Servlet生命周期的注解(Annotation):@PostConstruct和@PreConstruct。这两个注解被用来修饰一个非静态的void()方法.而且这个方法不能有抛出异常声明。
被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。
被@PreConstruct修饰的方法会在服务器卸载Servlet的时候运行,并且只会被服务器调用一次,类似于Servlet的destroy()方法。被@PreConstruct修饰的方法会在destroy()方法之后运行,在Servlet被彻底卸载之前。(详见下面的程序实践)
以上是关于@PostConstruct与@PreConstruct注解的主要内容,如果未能解决你的问题,请参考以下文章
注解@PostConstruct与@PreDestroy使用讲解
spring中Constructor@Autowired@PostConstruct的顺序