春豆示波器
有人可以解释一下Spring Beans中的作用域是什么吗,我一直只使用“原型”,但是我可以用其他参数来代替它吗?
我正在谈论的例子
<bean id="customerInfoController" class="com.action.Controller" scope="prototype">
<property name="accountDao" ref="accountDao"/>
<property name="utilityDao" ref="utilityDao"/>
<property name="account_usageDao" ref="account_usageDao"/>
</bean>