声明:这是转载的。内容根据网上资料整理。
相关链接:http://www.360doc.com/content/10/1118/16/2371584_70449913.shtmlhttp://www.iteye.com/topic/1121784http://www.iteye.com/topic/295348
【正文】
一 注解优点?注解解决了什么问题,为什么要使用注解?
二 注解的来龙去脉(历史)
Spring 3.1 Reference 对注解与XML对比的一段叙述:
1 没有注解之前
- public class UserManagerImpl implements UserManager {
- private UserDao userDao;
- public void setUserDao(UserDao userDao) {
- this.userDao = userDao;
- }
- ...
- }
配置文件
- <bean id="userManagerImpl" class="com.kedacom.spring.annotation.service.UserManagerImpl">
- <property name="userDao" ref="userDao" />
- </bean>
- <bean id="userDao" class="com.kedacom.spring.annotation.persistence.UserDaoImpl">
- <property name="sessionFactory" ref="mySessionFactory" />
- </bean>
2 注解诞生之后
- public class UserManagerImpl implements UserManager {
- @Autowired
- private UserDao userDao;
- ...
- }
或者(对方法进行标注)
- public class UserManagerImpl implements UserManager {
- private UserDao userDao;
- @Autowired
- public void setUserDao(UserDao userDao) {
- this.userDao = userDao;
- }
- ...
- }
配置文件
- <bean id="userManagerImpl" class="com.kedacom.spring.annotation.service.UserManagerImpl" />
- <bean id="userDao" class="com.kedacom.spring.annotation.persistence.UserDaoImpl">
- <property name="sessionFactory" ref="mySessionFactory" />
- </bean>
@Autowired可以对成员变量、方法和构造函数进行标注,来完成自动装配的工作。以上两种不同实现方式中,@Autowired的标注位置不同,它们都会在Spring在初始化userManagerImpl这个bean时,自动装配userDao这个属性,区别是:第一种实现中,Spring会直接将UserDao类型的唯一一个bean赋值给userDao这个成员变量;第二种实现中,Spring会调用setUserDao方法来将UserDao类型的唯一一个bean装配到userDao这个属性。
要使@Autowired能够工作,还需要在配置文件中加入以下代码
- <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />
可以看到确实是减少了代码和配置文件中的配置。
三 注解总体介绍
注解实现Bean配置主要用来进行如依赖注入、生命周期回调方法定义等,不能消除XML文件中的Bean元数据定义,且基于XML配置中的依赖注入的数据将覆盖基于注解配置中的依赖注入的数据。
Spring3的基于注解实现Bean依赖注入支持如下三种注解:Spring自带依赖注入注解: Spring自带的一套依赖注入注解;JSR-250注解:Java平台的公共注解,是Java EE 5规范之一,在JDK6中默认包含这些注解,从Spring2.5开始支持。JSR-330注解:Java 依赖注入标准,Java EE 6规范之一,可能在加入到未来JDK版本,从Spring3开始支持;JPA注解:用于注入持久化上下文和尸体管理器。这三种类型的注解在Spring3中都支持,类似于注解事务支持,想要使用这些注解需要在Spring容器中开启注解驱动支持,即使用如下配置方式开启:- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation=" http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd">
- <context:annotation-config/>
- </beans>
这样就能使用注解驱动依赖注入了Spring自带依赖注入注解1 @Required:依赖检查;2 @Autowired:自动装配2 自动装配,用于替代基于XML配置的自动装配基于@Autowired的自动装配,默认是根据类型注入,可以用于构造器、字段、方法注入3 @Value:注入SpEL表达式用于注入SpEL表达式,可以放置在字段方法或参数上@Value(value = "SpEL表达式") @Value(value = "#{message}") 4 @Qualifier:限定描述符,用于细粒度选择候选者@Qualifier限定描述符除了能根据名字进行注入,但能进行更细粒度的控制如何选择候选者@Qualifier(value = "限定标识符") JSR-250注解1 @Resource:自动装配,默认根据类型装配,如果指定name属性将根据名字装配,可以使用如下方式来指定@Resource(name = "标识符") 字段或setter方法
2 @PostConstruct和PreDestroy:通过注解指定初始化和销毁方法定义
JSR-330注解
1 @Inject:等价于默认的@Autowired,只是没有required属性2 @Named:指定Bean名字,对应于Spring自带@Qualifier中的缺省的根据Bean名字注入情况3 @Qualifier:只对应于Spring自带@Qualifier中的扩展@Qualifier限定描述符注解,即只能扩展使用,没有value属性JPA注解@PersistenceContext@PersistenceUnit用于注入EntityManagerFactory和EntityManager
四 注解需要的jar包及配置
五 拓展:结合局部代码来说明注解
1 @Autowired
同二 注解历史中的内容,此处不重复。
2 @Qualifier
@Autowired是根据类型进行自动装配的。在上面的例子中,如果当Spring上下文中存在不止一个UserDao类型的bean时,就会抛出BeanCreationException异常;如果Spring上下文中不存在UserDao类型的bean,也会抛出BeanCreationException异常。我们可以使用@Qualifier配合@Autowired来解决这些问题。
1>可能存在多个UserDao实例
- @Autowired
- public void setUserDao(@Qualifier("userDao") UserDao userDao) {
- this.userDao = userDao;
- }
- @Autowired(required = false)
- public void setUserDao(UserDao userDao) {
- this.userDao = userDao;
- }
4 @PostConstruct(JSR-250) 在方法上加上注解@PostConstruct,这个方法就会在Bean初始化之后被Spring容器执行(注:Bean初始化包括,实例化Bean,并装配Bean的属性(依赖注入))。 它的一个典型的应用场景是,当你需要往Bean里注入一个其父类中定义的属性,而你又无法复写父类的属性或属性的setter方法时,如:
- public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
- private SessionFactory mySessionFacotry;
- @Resource
- public void setMySessionFacotry(SessionFactory sessionFacotry) {
- this.mySessionFacotry = sessionFacotry;
- }
- @PostConstruct
- public void injectSessionFactory() {
- super.setSessionFactory(mySessionFacotry);
- }
- ...
- }
5 @PreDestroy(JSR-250) 在方法上加上注解@PreDestroy,这个方法就会在Bean初始化之后被Spring容器执行。由于我们当前还没有需要用到它的场景,这里不不去演示。其用法同@PostConstruct。
6 使用<context:annotation-config />简化配置 Spring2.1添加了一个新的context的Schema命名空间,该命名空间对注释驱动、属性文件引入、加载期织入等功能提供了便捷的配置。我们知道注释本身是不会做任何事情的,它仅提供元数据信息。要使元数据信息真正起作用,必须让负责处理这些元数据的处理器工作起来。
AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor就是处理这些注释元数据的处理器。但是直接在Spring配置文件中定义这些Bean显得比较笨拙。Spring为我们提供了一种方便的注册这些BeanPostProcessor的方式,这就是<context:annotation-config />:
- <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd">
- <context:annotation-config />
- </beans>
使用Spring注解完成Bean的定义 以上我们介绍了通过@Autowired或@Resource来实现在Bean中自动注入的功能,下面我们将介绍如何注解Bean,从而从XML配置文件中完全移除Bean定义的配置。
7 @Component(不推荐使用)、@Repository、@Service、@Controller 只需要在对应的类上加上一个@Component注解,就将该类定义为一个Bean了:
- @Component
- public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
- ...
- }
8 使用<context:component-scan />让Bean定义注解工作起来
- <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd">
- <context:component-scan base-package="com.kedacom.ksoa" />
- </beans>
- <context:component-scan base-package="com.casheen.spring.annotation">
- <context:exclude-filter type="regex" expression="com\.casheen\.spring\.annotation\.web\..*" />
- </context:component-scan>
9 使用@Scope来定义Bean的作用范围
在使用XML定义Bean时,我们可能还需要通过bean的scope属性来定义一个Bean的作用范围,我们同样可以通过@Scope注解来完成这项工作
- @Scope("session")
- @Component()
- public class UserSessionBean implements Serializable {
- ...
- }
为了加深印象,又增加了一个完整的例子。
例子来源
spring零配置(Annotation)学习笔记
本地例子:
AnnotationTest
本地有细小的改变
project用到的jar包
先上bean-config.xml
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd">
- <context:annotation-config/>
- <!-- action暂未用注解 -->
- <bean id="myAction" class="com.demo.annotation.action.MyAction" scope="prototype" />
- <!-- 注解测试 -->
- <context:component-scan base-package="com.demo.annotation" />
- </beans>
service 接口
- /**
- *
- * Annotation
- *
- */
- public interface TestService {
- /**
- * 注解测试
- * @return
- */
- public String getTestAnnotation();
- }
service实现类
- import org.springframework.stereotype.Service;
- import com.demo.annotation.dao.TestDao;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.beans.factory.annotation.Qualifier;
- /**
- *
- * 注解测试
- *
- */
- @Service("testService")
- public class TestServiceImp implements TestService {
- /**
- * 自动装配
- */
- @Autowired
- @Qualifier("testDao")
- //@Resource(name="testDao"), 等价于<property ………… ref="testDao" />
- private TestDao testDao;
- public TestDao getTestDao() {
- return testDao;
- }
- public void setTestDao(TestDao testDao) {
- this.testDao = testDao;
- }
- @Override
- public String getTestAnnotation() {
- // TODO Auto-generated method stub
- return testDao.getTestDaoAnnotation();
- }
- }
dao接口
- /**
- * 测试注解
- *
- */
- public interface TestDao {
- /**
- * 得到dao层注解
- * @return
- */
- public String getTestDaoAnnotation();
- }
dao层实现类
- import org.springframework.stereotype.Repository;
- /**
- * 测试Annotation
- *
- */
- @Repository("testDao")
- public class TestDaoImpl implements TestDao {
- @Override
- public String getTestDaoAnnotation() {
- // TODO Auto-generated method stub
- return "This is testDao Annotation...";
- }
- }
Action类
- import javax.annotation.Resource;
- import com.demo.annotation.service.TestService;
- public class MyAction{
- @Resource(name="testService")
- private TestService testService;
- public String testAnnotation(){
- if(null == testService){
- System.out.println("Service is null!!");
- }
- String result = testService.getTestAnnotation();
- System.out.println(result);
- return "success";
- }
- public TestService getTestService() {
- return testService;
- }
- public void setTestService(TestService testService) {
- this.testService = testService;
- }
- }
测试类
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- import com.demo.annotation.action.MyAction;
- public class TestAnnotation {
- public static void main(String[] args) {
- ApplicationContext context = new ClassPathXmlApplicationContext("bean-config.xml");
- MyAction action = (MyAction)context.getBean("myAction");
- action.testAnnotation();
- }
- }
七 总结
Annotation的好处:
简化了xml文件
坏处:
1 spring一直宣称是无侵入的,annotation是否是侵入了?
2 很多类都是pojo的对象,引入annotation后还是pojo么?
3 增加了复杂度
spring官方的态度是两种让你混合着用。
最后:
推荐
http://snowolf.iteye.com/blog/577989
snowolf的Spring 注解学习手札 有代码有文字说明可运行可测试