(不推荐)
<bean xxxxx init-method="" destroy-method=""/>
注:想看到bean销毁 需要 applicationContext.destroy();
applicationContext不管scope为prototype类型的bean的销毁,你将看不到destroy方法。
spring也支持JSR-250,java的注解@PostConstruct和@PreDestroy(推荐)
(不推荐)
<bean xxxxx init-method="" destroy-method=""/>
注:想看到bean销毁 需要 applicationContext.destroy();
applicationContext不管scope为prototype类型的bean的销毁,你将看不到destroy方法。
spring也支持JSR-250,java的注解@PostConstruct和@PreDestroy(推荐)