@PostConstruct란?

2020. 11. 10. 18:37OpenSource/Spring

반응형

@PostConstruct?

 

javax.annotation

Annotation Type PostConstruct



  • @Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface PostConstruct

    The PostConstruct annotation is used on a method that needs to be executed after dependency injection is done to perform any initialization. This method MUST be invoked before the class is put into service. This annotation MUST be supported on all classes that support dependency injection. The method annotated with PostConstruct MUST be invoked even if the class does not request any resources to be injected. Only one method can be annotated with this annotation. The method on which the PostConstruct annotation is applied MUST fulfill all of the following criteria:

    • The method MUST NOT have any parameters except in the case of interceptors in which case it takes an InvocationContext object as defined by the Interceptors specification.
    • The method defined on an interceptor class MUST HAVE one of the following signatures:

      void <METHOD>(InvocationContext)

      Object <METHOD>(InvocationContext) throws Exception

      Note: A PostConstruct interceptor method must not throw application exceptions, but it may be declared to throw checked exceptions including the java.lang.Exception if the same interceptor method interposes on business or timeout methods in addition to lifecycle events. If a PostConstruct interceptor method returns a value, it is ignored by the container.

    • The method defined on a non-interceptor class MUST HAVE the following signature:

      void <METHOD>()

    • The method on which PostConstruct is applied MAY be public, protected, package private or private.
    • The method MUST NOT be static except for the application client.
    • The method MAY be final.
    • If the method throws an unchecked exception the class MUST NOT be put into service except in the case of EJBs where the EJB can handle exceptions and even recover from them.
    Since:Common Annotations 1.0See Also:PreDestroy, Resource

출처: docs.oracle.com/javaee/7/api/javax/annotation/PostConstruct.html 

 

PostConstruct (Java(TM) EE 7 Specification APIs)

JavaScript is disabled on your browser. @Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface PostConstruct The PostConstruct annotation is used on a method that needs to be executed after dependency injection is done to perform any

docs.oracle.com

 

@PostConstruct

출처 : 설명 디기 잘해놓은 블로그 참조~이해 완료 감사르~

velog.io/@hellozin/%EC%8A%A4%ED%94%84%EB%A7%81-%EB%B9%88%EC%9D%98-%EC%83%9D%EC%84%B1%EC%9E%90-afterPropertiesSet-PostConstruct

 

스프링 빈의 생성자, afterPropertiesSet(), @PostConstruct

스프링 빈의 생성자, afterPropertiesSet(), @PostConstruct 의 차이점과 용도

velog.io

위의 블로그가 참고한 사이트

programmer.help/blogs/after-properties-set-and-init-method-postconstruct-of-spring-initializing-bean.html

반응형

'OpenSource > Spring' 카테고리의 다른 글

@Retryable  (0) 2020.11.17
@PreDestory란?  (0) 2020.11.12
Spring WebFlux  (0) 2017.04.26
ChainedTransactionManager를 이용한 글로벌트랜잭션  (0) 2013.08.22
Bug  (0) 2013.06.21