标签:tco 影响 声明 不能 方法 注解 ... mem 运行
从Java EE5规范开始,Servlet增加了两个影响Servlet生命周期的注解(Annotation):@PostConstruct和@PreConstruct。这两个注解被用来修饰一个非静态的void()方法.而且这个方法不能有抛出异常声明。
使用方式,例如:
//方式1 @PostConstruct public void someMethod(){ ... } //方式2 public @PostConstruct void someMethod(){ ... }
1.@PostConstruct说明
被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。
2.@PreConstruct说明
被@PreConstruct修饰的方法会在服务器卸载Servlet的时候运行,并且只会被服务器调用一次,类似于Servlet的destroy()方法。被@PreConstruct修饰的方法会在destroy()方法之后运行,在Servlet被彻底卸载之前。
Java开发之@PostConstruct和@PreConstruct注解
标签:tco 影响 声明 不能 方法 注解 ... mem 运行
原文地址:http://www.cnblogs.com/nihaorz/p/6484530.html