7、使用注解开发
-
确定已经导入aop的包
-
增加注解支持
<?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>
1.bean
// @Component 组件
//等价于 <bean id="user" class="com.kuang.pojo.User"/>
@Component
@Scope("singleton")
public class User {
private String name;
}
2.属性如何注入
// @Component 组件
//等价于 <bean id="user" class="com.kuang.pojo.User"/>
@Component
@Scope("singleton")
public class User {
@Value("高壮壮")
// 相当于 <property name="name" value="高壮壮"/>
private String name;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
3.衍生的注解
-
@Component有几个衍生的注解,在我们web开发,会按照mvc三层架构
-
dao【@Repository】
-
service【@Service】
-
controller【@Controller】
-
这四个注解功能都一样,都是代表将某个类注册到spring容器中,装配bean
4.自动装配配置
- @Autowired:自动装配通过类型,名字
如果autowired不能唯一自动装配上属性,则需要通过
- @Qualifier(value = "xxx")
- @Resource:自动装配通过类型,名字
- @Nullable:字段标记了这个注解,说明这个字段可以为null
5.作用域
// @Component 组件
//等价于 <bean id="user" class="com.kuang.pojo.User"/>
@Component
@Scope("singleton")
public class User {
@Value("高壮壮")
// 相当于 <property name="name" value="高壮壮"/>
private String name;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
6.小结
-
xml与注解:
-
xml更加万能,适用于任何场合,维护简单方便
-
注解 不是自己的类不能使用(一个bean无法引用ref另外一个bean)
-
-
xml与注解的最佳实践
-
xml用来管理bean
-
注解只负责完成属性的注入
-
生产过程中,唯一需要注意的一点,想让注解生效,就必须开启注解的支持
-
<?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 />
<!--指定要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.kuang"/>
</beans>