美文网首页
Spring_platform

Spring_platform

作者: weieyuan | 来源:发表于2016-07-17 18:59 被阅读0次

    Spring的注解

    • <aop:scoped-proxy/>,长生命周期的bean依赖于短生命周期的bean时,对短生命周期的bean使用代理。
    <bean id="a" class="com.wei.a" scope="session">
        <aop:scoped-proxy />
    </bean>
    <bean id= "b" class="com.wei.b">
        <property name="b" ref="b" />
    </bean>
    

    相关文章

      网友评论

          本文标题:Spring_platform

          本文链接:https://www.haomeiwen.com/subject/jvqpjttx.html