依賴註入 不同數據類型的註入方式 除了通過 setter 註入、構造器註入還可以通過類似的 和 進行註入,具體參看官方文檔的例子,使用 "命名空間註入" Bean 作用域 | Scope | Description | | : | : | | "singleton" | (Default) Scop ...
依賴註入
不同數據類型的註入方式
public class Student {
private String name;
private Address address;
private String[] stationeries;
private List<String> hobbies;
private Map<String, String> book;
private Set<String> games;
private String wife;
private Properties info;
...
<bean id="address" class="com.youzi.pojo.Address">
<property name="address" value="China"/>
</bean>
<bean id="student" class="com.youzi.pojo.Student">
<property name="name" value="張三"/>
<property name="address" ref="address"/>
<property name="stationeries">
<array>
<value>ruler</value>
<value>eraser</value>
<value>pencil</value>
</array>
</property>
<property name="wife">
<null/>
</property>
<property name="book">
<map>
<entry key="西游記" value="吳承恩"/>
<entry key="紅樓夢" value="曹雪芹"/>
</map>
</property>
<property name="games">
<set>
<value>LOL</value>
<value>COD</value>
<value>CS</value>
</set>
</property>
<property name="hobbies">
<list>
<value>sing</value>
<value>dance</value>
<value>rap</value>
<value>basketball</value>
</list>
</property>
<property name="info">
<props>
<prop key="userName">zhangsan</prop>
<prop key="cardNo">12345678</prop>
</props>
</property>
</bean>
除了通過 setter 註入、構造器註入還可以通過類似的 p-namespace
和 c-namespace
進行註入,具體參看官方文檔的例子,使用命名空間註入
Bean 作用域
Scope | Description |
---|---|
singleton | (Default) Scopes a single bean definition to a single object instance for each Spring IoC container. |
prototype | Scopes a single bean definition to any number of object instances. |
request | Scopes a single bean definition to the lifecycle of a single HTTP request. That is, each HTTP request has its own instance of a bean created off the back of a single bean definition. Only valid in the context of a web-aware Spring ApplicationContext . |
session | Scopes a single bean definition to the lifecycle of an HTTP Session . Only valid in the context of a web-aware Spring ApplicationContext . |
application | Scopes a single bean definition to the lifecycle of a ServletContext . Only valid in the context of a web-aware Spring ApplicationContext . |
websocket | Scopes a single bean definition to the lifecycle of a WebSocket . Only valid in the context of a web-aware Spring ApplicationContext . |
Bean 的自動裝配
- 自動裝配是 Spring 滿足 bean 依賴的一種方式
- Spring 會在上下文中自動尋找,並自動給 bean 裝配屬性
Spring 中有三種裝配方式
- 再 xml 中顯式地配置
- 再 Java 中顯式地配置
- 隱式的自動裝配 bean
xml 中顯式的配置
public class People {
private String name;
private Animal cat;
private Animal Dog;
...
public class Cat implements Animal {
@Override
public void bark() {
System.out.println("miao~");
}
}
public class Dog implements Animal {
@Override
public void bark() {
System.out.println("wang~");
}
}
<bean id="cat" class="com.youzi.pojo.Cat"/>
<bean id="dog" class="com.youzi.pojo.Dog"/>
<bean id="people1" class="com.youzi.pojo.People">
<property name="name" value="zhangsan"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>
</bean>
隱式的自動裝配 bean
- 通過名字自動裝配,bean id 要和對應的 setter 方法名對應,且首字母小寫,如
setAbc()
對應的 bean id 就應該為abc
<bean id="cat" class="com.youzi.pojo.Cat"/>
<bean id="dog" class="com.youzi.pojo.Dog"/>
<bean id="people1" class="com.youzi.pojo.People" autowire="byName">
<property name="name" value="zhangsan"/>
</bean>
通過類型自動裝配,需要參數為不同的類型才能使用,不然會報錯
NoUniqueBeanDefinitionException
也就是當前示例中的cat
和dog
不能再使用Animal
聲明,應改為private Cat cat;
private Dog dog;
<bean id="cat" class="com.youzi.pojo.Cat"/>
<bean id="dog" class="com.youzi.pojo.Dog"/>
<bean id="people1" class="com.youzi.pojo.People" autowire="byType">
<property name="name" value="zhangsan"/>
</bean>
使用註解實現自動裝配 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
http://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.youzi.pojo.Cat"/>
<bean id="dog" class="com.youzi.pojo.Dog"/>
<bean id="people1" class="com.youzi.pojo.People">
<property name="name" value="zhangsan"/>
</bean>
</beans>
代碼中只需要加上 @Autowired
即可實現自動裝配 bean
正確使用該方式的情況下可以不聲明 setter 也能自動裝配,與上面的 xml 不同
裝配的方式為先按類型,再按名字
如果
cat
聲明為 Cat 類型,即cat
和dog
為不同類型的時候,那麼 bean id 和屬性不用同名(setter 可有可無所以也不用同名),類似於 xml 中的autowire="byType"
如果
cat
和dog
為相同類型的時候,如代碼中都聲明為Animal
類型,那麼會通過名字去匹配,需要bean id 和屬性名字相同,相當於 xml 中的autowire="byName"
public class People {
private String name;
@Autowired
private Animal cat;
@Autowired
private Animal dog;
...
如果存在多個 bean 想裝配其中指定的某個的時候,可以使用 @Qualifier
註解實現
public class People {
private String name;
@Autowired
private Animal cat;
@Autowired
@Qualifier("dog2") //指定使用 dog2
private Animal dog;
...
<bean id="dog1" class="com.youzi.pojo.Dog" scope="prototype">
<property name="sound" value="wang~"/>
</bean>
<bean id="dog2" class="com.youzi.pojo.Dog" scope="prototype">
<property name="sound" value="wangwang~"/>
</bean>
也可以使用 @Resource
註解實現上述功能,功能和 @Autowired
相同,不過可以直接指定 bean id
import javax.annotation.Resource;
public class People {
private String name;
//@Autowired
@Resource
private Animal cat;
//@Autowired
//@Qualifier("dog2")
@Resource
private Animal dog;
...