Spring2.5 有一个名为dependency-check 的特性,可以为bean 标签提供,而default-dependency-check 可以在父级<beans>
标签上提供。
例如:<bean id="soandSo" class="..." dependecy-check=""/>
<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-2.5.xsd"
default-dependency-check="all">
但是在 Spring3.x 中,这些属性已被弃用,除了使用@Required
属性和任何等效于 Spring3.x 中的默认依赖项检查之外,还有其他设置依赖项检查的方法吗?