标签:system 名称 control -- over 实体 test conf 快捷
jdk1.5开始支持注解,spring2.5开始全面支持注解。
准备工作:利用注解的方式注入属性。
1、在spring配置文件中引入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">
</beans>
2、开启属性注解支持!
<context:annotation-config/>
测试:
1、将User类中的set方法去掉,使用@Autowired注解
public class User {
@Autowired
private Cat cat;
@Autowired
private Dog dog;
private String str;
public Cat getCat() {
return cat;
}
public Dog getDog() {
return dog;
}
public String getStr() {
return str;
}
}
2、此时配置文件内容
<context:annotation-config/>
<bean id="dog" class="com.maple.pojo.Dog"/>
<bean id="cat" class="com.maple.pojo.Cat"/>
<bean id="user" class="com.maple.pojo.User"/>
3、测试,成功输出结果!
@Autowired(required=false) 说明:false,对象可以为null;true,对象必须存对象,不能为null。
//如果允许对象为null,设置required = false,默认为true
@Autowired(required = false)
private Cat cat;
测试实验步骤:
1、配置文件修改内容,保证类型存在对象。且名字不为类的默认名字!
<bean id="dog1" class="com.maple.pojo.Dog"/>
<bean id="dog2" class="com.maple.pojo.Dog"/>
<bean id="cat1" class="com.maple.pojo.Cat"/>
<bean id="cat2" class="com.maple.pojo.Cat"/>
2、没有加Qualifier测试,直接报错
3、在属性上添加Qualifier注解
@Autowired
@Qualifier(value = "cat2")
private Cat cat;
@Autowired
@Qualifier(value = "dog2")
private Dog dog;
测试,成功输出!
实体类:
public class User {
//如果允许对象为null,设置required = false,默认为true
@Resource(name = "cat2")
private Cat cat;
@Resource
private Dog dog;
private String str;
}
beans.xml
<bean id="dog" class="com.maple.pojo.Dog"/>
<bean id="cat1" class="com.maple.pojo.Cat"/>
<bean id="cat2" class="com.maple.pojo.Cat"/>
<bean id="user" class="com.maple.pojo.User"/>
测试:结果OK
配置文件2:beans.xml , 删掉cat2
<bean id="dog" class="com.maple.pojo.Dog"/>
<bean id="cat1" class="com.maple.pojo.Cat"/>
实体类上只保留注解
@Resource
private Cat cat;
@Resource
private Dog dog;
结果:OK
结论:先进行byName查找,失败;再进行byType查找,成功。
@Autowired与@Resource异同:
1、@Autowired与@Resource都可以用来装配bean。都可以写在字段上,或写在setter方法上。
2、@Autowired默认按类型装配(属于spring规范),默认情况下必须要求依赖对象必须存在,如果要允许null 值,可以设置它的required属性为false,如:@Autowired(required=false) ,如果我们想使用名称装配可以结合@Qualifier注解进行使用
3、@Resource(属于J2EE规范),默认按照名称进行装配,名称可以通过name属性进行指定。如果没有指定name属性,当注解写在字段上时,默认取字段名进行按照名称查找,如果注解写在setter方法上默认取属性名进行装配。当找不到与名称匹配的bean时才按照类型进行装配。但是需要注意的是,如果name属性一旦指定,就只会按照名称进行装配。
它们的作用相同都是用注解方式注入对象,但执行顺序不同。@Autowired先byType,@Resource先byName。
在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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
</beans>
配置扫描哪些包下的注解
<!--指定注解扫描包-->
<context:component-scan base-package="com.maple"/>
在指定包下编写类,增加注解
//默认值为当前类的首字母小写,也可以指定@Component(value = "use")
@Component
//等价于<bean id="user" class="com.maple.pojo.User"/>
public class User {
private Integer id;
@Value("枫叶")
private String name;
public void setId(Integer id){
this.id = id;
}
public void setName(String name){
this.name = name;
}
@Override
public String toString(){
return "User{" + "id=" + id + ", name=‘" + name + ‘\‘‘ + ‘}‘;
}
}
@Test
public void test(){
ApplicationContext applicationContext =
new ClassPathXmlApplicationContext("beans.xml");
User user = (User) applicationContext.getBean("user");
System.out.println(user.name);
}
使用注解注入属性
@Component("user")
// 相当于配置文件中 <bean id="user" class="当前注解的类"/>
public class User {
@Value("枫叶")
// 相当于配置文件中 <property name="name" value="枫叶"/>
public String name;
}
@Component("user")
public class User {
public String name;
@Value("枫叶")
public void setName(String name) {
this.name = name;
}
}
这些注解,就是替代了在配置文件当中配置步骤而已!更加的方便快捷!
@Component三个衍生注解
为了更好的进行分层,Spring可以使用其它三个注解,功能一样,目前使用哪一个功能都一样。
写上这些注解,就相当于将这个类交给Spring管理装配了!
@scope
@Controller("user")
@Scope("prototype")
public class User {
@Value("枫叶")
public String name;
}
XML与注解比较
xml与注解整合开发 :推荐最佳实践
<context:annotation-config/>
作用:
【文章地址】
原文链接
B站地址:https://space.bilibili.com/95256449
标签:system 名称 control -- over 实体 test conf 快捷
原文地址:https://www.cnblogs.com/junlinsky/p/12826083.html