Python 官方文档:入门教程 => 点击学习
目录环境准备设值注入构造注入总结环境 ubuntu 22.04IntelliJ idea 2022.1.3jdk 17.0.3spring 5.3.21 准备 创建Maven项目 t
修改 pom.xml
文件,添加依赖:
......
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<!-- Https://mvnrepository.com/artifact/org.springframework/spring-WEBmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.21</version>
</dependency>
......
在 src/main/resources
目录下创建 applicationContext.xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
</beans>
在 src/test/java
目录下创建测试:
public class Test0706 {
}
创建如下POJO:
Axe
:Axe接口;StoneAxe
:Axe实现类;SteelAxe
:Axe实现类;Person
:Person持有Axe;package pojo;
public interface Axe {
public void chop();
}
package pojo;
public class StoneAxe implements Axe{
public StoneAxe() {
System.out.println("StoneAxe constructor");
}
@Override
public void chop() {
System.out.println("Stone axe!");
}
}
package pojo;
public class SteelAxe implements Axe{
public SteelAxe() {
System.out.println("SteelAxe constructor");
}
@Override
public void chop() {
System.out.println("Steel axe!");
}
}
package pojo;
public class Person {
private String name;
private Axe axe;
public void setAxe(Axe axe) {
this.axe = axe;
}
public void setName(String name) {
this.name = name;
}
public void useAxe() {
System.out.println("I am " + name);
axe.chop();
}
public Person() {
System.out.println("Person constructor");
}
}
在 applicationContext.xml
中注册bean:
......
<bean id="stoneAxe" class="pojo.StoneAxe"/>
<bean id="steelAxe" class="pojo.SteelAxe"/>
<bean id="person" class="pojo.Person">
<property name="name" value="Tom"/>
<property name="axe" ref="stoneAxe"/>
</bean>
......
创建测试用例:
@Test
public void test1() {
var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
System.out.println("before getBean");
var person = ctx.getBean("person", Person.class);
person.useAxe();
}
运行测试,如下:
StoneAxe constructor
SteelAxe constructor
Person constructor
before getBean
I am Tom
Stone axe!
总结:
singleton
,如果是 prototype
,则是在每次 getBean()
的时候创建实例对象);value
),也可以注入bean( ref
);stoneAxe
)在 Person
之前实例化;set
加上首字母大写的 属性名
。本例中, person
有一个属性叫做 axe
,则Spring会拼出 setAxe()
方法,并把 ref
的对象作为参数传进去。所以,一定要确保Person有对应的方法;构造注入和设值注入非常相像,二者的主要区别为:
创建如下POJO:
Book
:Book接口;PlayBook
:Book实现类;StudyBook
:Book实现类;Student
:Student持有Book;package pojo;
public interface Book {
public void show();
}
package pojo;
public class PlayBook implements Book{
public PlayBook() {
System.out.println("PlayBook constructor");
}
@Override
public void show() {
System.out.println("Play book!");
}
}
package pojo;
public class StudyBook implements Book{
public StudyBook() {
System.out.println("StudyBook constructor");
}
@Override
public void show() {
System.out.println("Study book!");
}
}
package pojo;
public class Student {
private String name;
private Book book;
public Student(String name, Book book) {
System.out.println("Student constructor");
this.name = name;
this.book = book;
}
public void readBook() {
System.out.println("I am " + name);
book.show();
}
}
在 applicationContext.xml
中注册bean:
......
<bean id="playBook" class="pojo.PlayBook"/>
<bean id="studyBook" class="pojo.StudyBook"/>
<bean id="student" class="pojo.Student">
<constructor-arg index="0" value="Jerry"/>
<constructor-arg index="1" ref="playBook"/>
</bean>
......
创建测试用例:
@Test
public void test2() {
var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
System.out.println("before getBean");
var student = ctx.getBean("student", Student.class);
student.readBook();
}
运行测试,如下:
......
PlayBook constructor
StudyBook constructor
Student constructor
before getBean
I am Jerry
Play book!
总结:
singleton
,如果是 prototype
,则是在每次 getBean()
的时候创建实例对象);value
),也可以注入bean( ref
);PlayBook
)在 Student
之前实例化;index
来区分(下标从 0
开始),所以一定要确保有对应的构造方法; 接口注入接口注入和设值注入也很相像,都是通过setter方法来注入被依赖对象,二者的主要区别为:
<property>
来注入对象;以 ApplicationContextAware
接口为例,在Spring初始化时,会扫描所有的bean,如果发现某个bean实现了该接口,就会自动调用其 setApplicationContext()
方法,把Spring容器本身传进去;
创建POJO MyBean
:
package pojo;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
public class MyBean implements ApplicationContextAware {
private ApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
System.out.println("before setter");
this.applicationContext = applicationContext;
}
public void foo() {
System.out.println(applicationContext.getDisplayName());
}
}
在 applicationContext.xml
中注册bean:
......
<bean id="myBean" class="pojo.MyBean"/>
......
创建测试用例:
@Test
public void test3() {
var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
System.out.println("before getBean");
var myBean = ctx.getBean("myBean", MyBean.class);
myBean.foo();
}
运行测试,如下:
......
before setter
before getBean
org.springframework.context.support.ClassPathXmlApplicationContext@506e6d5e
总结:
对于bean之前的依赖关系,通常我们使用 ref
来显式指定被注入的对象。Spring也支持自动装配(autowire)。
常见的自动装配策略有:
byName
:通过setter方法名来查找bean ID,跟前面说的通过bean ID来调用setter方法正好相反。具体操作为:去掉 set
前缀,然后首字母小写。比如 setName()
方法,得到的bean ID是 name
。如果找不到对应的bean ID,则不进行注入操作。由于ID是唯一的,所以不存在找到多个bean的情况;byType
:根据setter方法的参数类型来查找bean,如果找不到符合的bean,则不进行注入操作。如果找到多个符合的bean,则抛出异常;创建如下POJO:
Ball
:Ball接口;FootBall
:Ball实现类;BasketBall
:Ball实现类;Athlete
:Athlete持有Ball;package pojo;
public interface Ball {
public void fly();
}
package pojo;
public class FootBall implements Ball{
@Override
public void fly() {
System.out.println("FootBall is flying");
}
}
package pojo;
public class BasketBall implements Ball{
@Override
public void fly() {
System.out.println("BasketBall is flying");
}
}
package pojo;
public class Athlete {
private Ball ball;
public void setBall(Ball ball) {
this.ball = ball;
}
public void play() {
ball.fly();
}
}
在 applicationContext.xml
中注册bean:
......
<bean id="footBall" class="pojo.FootBall"/>
<bean id="basketBall" class="pojo.BasketBall"/>
<bean id="athlete" class="pojo.Athlete" autowire="byName"/>
......
创建测试用例:
@Test
public void test4() {
var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
var athlete = ctx.getBean("athlete", Athlete.class);
athlete.play();
}
运行测试,如下:
java.lang.NullPointerException: Cannot invoke "pojo.Ball.fly()" because "this.ball" is null
这是因为 autowire="byName"
,setter方法为 setBall()
。移除 set
前缀,并把首字母 B
变成 b
,所以会查找ID为 ball
的bean,但是没有找到,所以不会注入对象。但是后面调用了Ball的 fly()
方法,所以报了空指针错误。
修改配置如下:
......
<bean id="ball" class="pojo.FootBall"/>
<bean id="basketBall" class="pojo.BasketBall"/>
<bean id="athlete" class="pojo.Athlete" autowire="byName"/>
......
再次运行测试,这次成功了:
FootBall is flying
修改配置,把 byName
改为 byType
:
......
<bean id="athlete" class="pojo.Athlete" autowire="byName"/>
......
再次运行测试,如下:
org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'athlete' defined in class path resource [applicationContext.xml]:
Unsatisfied dependency expressed through bean property 'ball';
nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException:
No qualifying bean of type 'pojo.Ball' available:
expected single matching bean but found 2: ball,basketBall
找到了多个符合的bean,所以报错了。
修改配置,只保留一个Ball的实现类:
......
<!-- <bean id="ball" class="pojo.FootBall"/>-->
<bean id="basketBall" class="pojo.BasketBall"/>
<bean id="athlete" class="pojo.Athlete" autowire="byType"/>
......
再次运行测试,这次成功了。
BasketBall is flying
singleton
,表示在Spring初始化的时候创建,如果设置为 prototype
,则是在每次 getBean()
的时候创建实例对象(注:工厂bean创建bean行为有所不同,即使是singleton,也不是在Spring初始化时创建,而是在第一次 getBean()
时创建,参见我另一篇文档)。value
),也可以注入bean( ref
);stoneAxe
)在 Person
之前实例化;具体如何注入呢?
set
加上首字母大写的 属性名
。所以,一定要确保bean有对应的方法;index
来区分(下标从 0
开始),所以一定要确保有对应的构造方法;自动装配 :
byName
:通过setter方法名来查找bean ID,跟前面说的通过bean ID来调用setter方法正好相反。把setter方法名去掉 set
前缀,然后首字母小写。比如对于 setName()
方法,得到的bean ID是 name
:
byType
:根据setter方法的参数类型来查找bean:
到此这篇关于Spring依赖注入的几种方式分享梳理总结的文章就介绍到这了,更多相关Spring依赖注入内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Spring依赖注入的几种方式分享梳理总结
本文链接: https://lsjlt.com/news/153927.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0