notes/pl/java/libfws/spring/features/cfg/interfaces.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

11 строки
596 B
Plaintext

PostConstruct and PreDestroy
https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-postconstruct-and-predestroy-annotations
https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-java-lifecycle-callbacks
org.springframework.beans.factory.InitializingBean
void afterPropertiesSet() throws Exception;
org.springframework.beans.factory.DisposableBean
void destroy() throws Exception;
BeanPostProcessor
https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-factory-extension
Lifecycle