其他分享
首页 > 其他分享> > @PostConstruct注解简介说明

@PostConstruct注解简介说明

作者:互联网

转自:

http://www.java265.com/JavaCourse/202205/3414.html

 

下文笔者讲述java中@PostConstruct注解的功能简介说明,如下所示:

从Java EE5规范开始
    Servlet中增加了两个影响Servlet生命周期的注解
    @PostConstruct和@PreDestroy
    这两个注解被用来修饰一个非静态的void()方法
	 如下所示:
	  @PostConstruct
      public void testMethod(){}

注意事项:
    1.被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行
    并且只会被服务器执行一次
    PostConstruct在构造函数之后执行,init()方法之前执行
  PreDestroy()方法在destroy()方法执行之后运行 
 
   2.spring中Constructor、@Autowired、@PostConstruct的顺序
public Class User {

    @Autowired
    private Person b;

    public User() {
        System.out.println("此时@Autowired还未被注入: b = " + b);
    }

    @PostConstruct
    private void init() {
        System.out.println("@PostConstruct将在依赖注入完成后被自动调用: b = " + b);
    }
}

 

标签:Autowired,简介,void,PostConstruct,注解,Servlet,public
来源: https://www.cnblogs.com/java265/p/16283914.html