最佳答案
有人能解释一下 Spring bean 中的作用域是什么吗? 我一直使用的是“原型”,但是有没有其他参数可以代替它呢?
我所说的例子
<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>