зеркало из
https://github.com/iharh/notes.git
synced 2025-11-03 07:06:09 +02:00
11 строки
596 B
Plaintext
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
|