在spring4之后,要使用注解开发,必须要保证aop的包导入了


使用注解需要导入context约束,在xml文件增加注解的支持!
- "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.yuan.pojo"/>
-
-
- beans>
@Component 等价于
@Value 等价于
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Component;
-
- @Component
- public class User {
- @Value("小明")
- public String name;
-
- //@Value("小明")
- public void setName(String name) {
- this.name = name;
- }
- }
小结:Value可以放在字段或set方法上面
@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层
这四个注解功能都是一样的,都是代表某个类注册到spring,装配bean
@Resource、@Autowired、@Qualifier
在bean的自动装配_ABCdxy~的博客-CSDN博客有介绍
作用域的种类Spring中Bean的5种作用域scope_星晴coral的博客-CSDN博客_spring作用域
@Scope("作用域")
例:
- @Component
- @Scope("prototype")
- public class User {
-
- @Value("小明")
- public String name;
-
-
- // @Value("小明")
- public void setName(String name) {
- this.name = name;
- }
- }
xml与注解:
xml更加万能,适用于任何场合,维护简单方便
注解不是自己的类使用不了,维护相对复杂
xml与注解最佳实践
xml用来管理bean
注解只负责完成属性的注入
我们在使用的过程中,需要注意一个问题:必须让注解生效,就需要开启注解的支持
- <context:annotation-config/>
-
-
- <context:component-scan base-package="com.yuan"/>