如果不使用xml文件配置,我如何使用@PostConstruct和@PreDestroy?

时间:2014-12-03 10:26:14

标签: java spring-annotations

现在基于这个链接http://www.mkyong.com/spring/spring-postconstruct-and-predestroy-example/我做了但是在那个例子中他们使用了xml文件所以请帮助我使用spring注释或其他方式提前感谢...

1 个答案:

答案 0 :(得分:1)

如何创建bean(XML,注释,@ Configuration类)并不重要。只要 因为你有<context:annotation-config />它应该有效。

如果您使用@Configuration类,则应将此注释添加到基本配置类@EnableWebMvc

他们甚至提到在你提到的教程中添加它。