在Spring4之后,要使用注解开发,必须保证AOP的包已经导入
使用注解需要导入context约束,增加注解的支持。
<?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
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:annotation-config/>
</beans>
衍生的注解
@Component
有几个衍生的注解,在web开发中,会按照MVC三层架构分层!
- dao:
@Repository
- service:
@Service
- controller:
@Controller
这四个注解的功能都是一样的,都是代表将某个类注册到Spring中,装配bean.
自动装配的注解
即(六)文中提及的:
-
@Autowired
:自动装配通过类型、名字。如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=“xxxx”)来显式指定 -
@Qualifier
:显式指定装配对象 -
@Nullable
:字段标记了该注解,说明字段可以为空。 -
@Resource
:自动装配通过名字、类型。
作用域
Scope
可将实体类的作用范围设置为单例模式(singleton)、原型模式(prototype)
package com.xiao.pojo;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
//等价于 <bean id="user" class="com.xiao.pojo.User"/>
//@Component:组件,放在类上,说明这个类被Spring管理了,即”bean“
@Component
@Scope("singleton")
public class User {
//相当于<property name = "name" value = "布鲁克">
@Value("布鲁克")
public String name;
}
小结
xml与注解:
- xml更加万能,适用于任何场合!维护方便简单
- 注解维护相对复杂
xml与注解的最佳实践:
- xml用来管理bean;
- 注解只负责完成属性的注入;
实现注解的过程中,要让注解生效,就需要开启注解的支持。即
<context:component-scan base-package="com.xiao.pojo"/>
<context:annotation-config/>