spring 对Common Annotations支持
spring 支持 Common Annotations注解,包括:
@Resource 替代 @Autowire
@PostConstruct
@PreDestory
配置方式:
1. 增加注解扫描配置。
<context:annotation-config />2.注入beanpost
<bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor...