Version: Next

Spring注解开发

在Spring4之后,要使用注解开发,必须要保证AOP的包已经导入 使用注解需要导入context约束,增加注解的支持

  1. bean (applicationContext.xml)
  2. 属性如何注入
  3. 衍生注解
  4. 自动注入(已讲)
  5. 作用域
  6. 小结

bean

新建maven模块spring-06-annotation

@Component

组件注解,放在类上,用来代替bean标签,说明类被Spring管理了,就是bean,默认注册bean id为类的小写形式

  • applicationContext.xml

    <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
    https://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    https://www.springframework.org/schema/context/spring-context.xsd">
    <context:component-scan base-package="com.bsx.pojo"/>
    </beans>
  • User.java

    @Component
    public class User {
    public String name = "bb";
    }
  • 测试

    @Test
    public void testComponent() {
    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext" +
    ".xml");
    User user = context.getBean("user", User.class);
    System.out.println(user.name);
    }

属性注入

@Value("xxx")

加在属性或set方法上,用来注入属性的值。相当于bean标签下的property标签

  • User.java

    @Component
    public class User {
    @Value("Alice")
    public String name;
    }

注意:如果注入情况很复杂,应当用配置文件的方式

衍生注解

@Component有几个衍生注解,功能完全一样,都用来将类注册到Spring容器中,只是我们在web开发中,会按照mvc三层架构分层

注意修改包扫描的作用范围

<context:component-scan base-package="com.bsx"/>

@Repository

  • dao层

@Service

  • service层

@Controller

  • controller(web层、servlet层)

自动注入

@Autowired

  • @Autowired(required == true || false)
  • @Nullable

@Qualifier

  • Qualifier("xxx")

@Resource

  • @Resource
  • @Resource(name = "xxx")

作用域

@Scope

  • 单例
    • @Scope("singleton")
  • 原型
    • @Scope("prototype")

小结

xml与注解:

  • xml更加灵活,适用于任何场合,维护简单方便
  • 注解 跨类不灵活,维护相对复杂

二者结合才是王道

  • xml用来管理bean
  • 注解只负责完成属性注入

注意配置开启注解