我想創建一個擁有start()
和stop()
方法的bean。 當webapp的上下文處於活動狀態時,在Spring的運行時啓動過程中調用start()
。當webapp被部署或停止時,調用stop()
方法。如何將Spring Bean的生命週期與webapps的生命週期聯繫起來?
這是正確的:我註釋我的start()
方法與@PostConstruct
和stop()
方法與@PreDestroy
?
通常在servlet世界中,我寫了一個ServletContextListener。 我能夠從ServletContextListener訪問ApplicationContext嗎?