我正在学习春季并进行一些研发。

我尝试了“依赖”概念。

<bean id='example1' class='com.freelancing.SpringExample.Example1'
    depends-on="example">
    <!-- <property name="personExample"> <value>sparsh</value> </property> -->
    <property name="age">
        <value>25</value>
    </property>
    <property name="listVariable">
        <list>
            <value>3434</value>
            <value>3432423</value>
            <value>34324324</value>
        </list>
    </property>
    <property name="setVariable">
        <set>
            <value>45</value>
            <value>45</value>
            <value>23432</value>
        </set>
    </property>

</bean>

<bean id='example' class='com.freelancing.SpringExample.Example'>
    <!-- <constructor-arg index='0'> <value>2345</value> </constructor-arg>
        <constructor-arg index='1'> <value>sparsh</value> </constructor-arg> -->
    <property name="roll">
        <list>
            <value>2</value>
            <value>3</value>
            <value>5</value>
        </list>
    </property>
    <property name="salary">
        <value>12345</value>
    </property>
    <property name='uname'>
        <value>nane</value>
    </property>
    <property name="ex1" ref="example1"></property>
</bean>


现在,在这段代码中,您可以清楚地看到,我有意使Example1类依赖于Example。但是在Example bean中,它需要Example1 obj。这是一种循环依赖关系,但这并没有给我这个错误。

请帮我一些解释。

最佳答案

当您在属性中使用循环依赖项时,Spring可以解析它们。在这种情况下,它可以首先创建一个example(因为example1依赖于它),然后创建一个example1,然后将example1设置到ex1对象的字段“ example”中。

当然,如果您需要在构造函数中使用example1,则此方法将无效。这就是为什么我个人更喜欢构造函数注入,因为它首先防止了循环依赖(它们往往是不良代码的标志)。

因此,通过getter方法(或@ Autowired)进行注入允许spring解决循环依赖关系,但是,如果您问我,这并不是一件好事,它只是掩盖了一段代码不好的事实。

10-06 05:31