首页 > 其他 > 详细

context:annotation-config

时间:2016-08-06 08:35:29      阅读:393      评论:0      收藏:0      [点我收藏+]
    <!-- enable processing of annotations such as @Autowired and @Configuration -->
    <context:annotation-config/>

Activates various annotations to be detected in bean classes: Spring‘s @Required and @Autowired, as well as JSR 250‘s @PostConstruct, @PreDestroy and @Resource (if available), JAX-WS‘s @WebServiceRef (if available), EJB3‘s @EJB (if available), and JPA‘s @PersistenceContext and @PersistenceUnit (if available). Alternatively, you may choose to activate the individual BeanPostProcessors for those annotations. Note: This tag does not activate processing of Spring‘s @Transactional or EJB3‘s @TransactionAttribute annotation. Consider the use of the <tx:annotation-driven> tag for that purpose. See javadoc for org.springframework.context.annotation.AnnotationConfigApplicationContext for information on code-based alternatives to bootstrapping annotation-driven support. from XML.

  • @Required
  • @Autowired
  • @PostConstruct
  • @PreDestroy
  • @Resource
  • @WebServiceRef
  • @EJB
  • @PersistenceContext
  • @PersistenceUnit

JSR  Java Specification Request

EJB Enterprise JavaBeans

用途

激活注解类

注解类

@AutoWired

  1. 使用spring的bean
  2. required = true 是指必须在bean文件中存在
  3. bean文件中的bean通过property为bean设值,java文件中必须存在setter
  4. bean文件中的bean通过构造参数为bean设置时,不需要setter
  5. 获取spring的某bean时,如果发现这个类中有AutoWired 则会在spring bean 资源中查找并注入,不需要setter

总结:

  1. spring bean 相当于资源库,里面的资源存在依赖关系,依赖关系在java类中通过@AutoWired声明,强依赖的required=true ,弱依赖的required=false 。
  2. spring bean 要达到的效果就是,依赖的反转控制 。 不需要new 不需要setter。

 

属性必须注入

@Required

  @Required
    public void setName(String name) {
        this.name = name;
    }
  <bean class="cn.zno.Person">
        <property name="name" value="xiaoming"></property>
    </bean>

 

context:annotation-config

原文:http://www.cnblogs.com/zno2/p/4689681.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!