1. 程式人生 > >spring中的依賴檢查

spring中的依賴檢查

ram 5.x 集合類型 name style 基本類 all cep 檢查

4個依賴檢查支持的模式:
  • none – 沒有依賴檢查,這是默認的模式。
  • simple – 如果基本類型(int, long,double…)和集合類型(map, list..)的任何屬性都沒有設置,UnsatisfiedDependencyException將被拋出。
  • objects – 如果對象類型的任何屬性都沒有設置,UnsatisfiedDependencyException將被拋出。
  • all – 如果任何類型的任何屬性都沒有被設置,UnsatisfiedDependencyException將被拋出。

註:默認模式是 none

none:

<bean id="obj" class="com.xuzhiwen.spring9.Object1" dependency-check="none">
        <property name
="name" value="tom" /> </bean>

simple:

<bean id="obj" class="com.xuzhiwen.spring9.Object1" dependency-check="simple">
        <property name="name" value="tom" />
</bean>

objects:

<bean id="obj" class="com.xuzhiwen.spring9.Object1" dependency-check="objects">
        <property name
="name" value="tom" /> </bean>

all:

<bean id="obj" class="com.xuzhiwen.spring9.Object1" dependency-check="all">
        <property name="name" value="tom" />
</bean>

全局默認的依賴檢查:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p
="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd" default-dependency-check="all">

</beans>

spring中的依賴檢查