注解实现自动装配
声明:本文章属于学习笔记,根据狂神说的Spring编写
Spring官方文档:Spring官方文档
一丶 @Autowired注解的使用
@Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。 通过 @Autowired的使用来消除 set ,get方法。在使用@Autowired之前,我们对一个bean配置起属性时是这样用的:
< property name=“属性名” value=" 属性值"/ >
通过这种方式来,配置比较繁琐,而且代码比较多。在Spring 2.5 引入了 @Autowired 注释
首先我们要看三个实体类:
public class Cat {
public void shut(){
System.out.println("喵");
}
}
public class Dog {
public void shut()
{
System.out.println("狂叫");
}
}
public class People {
@Autowired
private Cat cat;
@Autowired
private Dog dog;
private String name;
public People() {
}
public People(Cat cat, Dog dog, String name) {
this.cat = cat;
this.dog = dog;
this.name = name;
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "People{" +
"cat=" + cat +
", dog=" + dog +
", name='" + name + '\'' +
'}';
}
}
我们先将people中的属性用上注解。
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/>
<bean id="cat" class="com.kdy.pojo.Cat"> </bean>
<bean id="dog" class="com.kdy.pojo.Dog"> </bean>
<bean id="people" class="com.kdy.pojo.People">
</bean>
</beans>
测试类测试:
@Test
public void test(){
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
People people = context.getBean("people", People.class);
people.getCat().shut();
people.getDog().shut();
}
我们可以看见这样的是成功输出了的。
但是我们改变一下bean的配置文件:
如果我们定义了多个这样类似的id,那么我们可以通过注解来进行指定的id来获取:
运行结果:
我们可以看见这是运行成功了的。
二丶@Resource
@Resource其实和@Autowired的功能大致相同但是也有所不同:
首先我们看下这个bean配置文件:
之后我们在这里上一个注解:
运行结果:
这里报了一个类不唯一的异常,所以我们如果想要使用期注解,要么就是一个类,要么就是指定该类:
运行结果: