- 浏览: 18639 次
- 性别:
- 来自: 深圳
最新评论
-
steafler:
刚刚犯了这个错误,还好现在修正了
spring scope="prototype" 和scope="singleton"区分 -
liangjian103:
刚刚犯了这个错误,导致我在Service层里设置的全局成员变量 ...
spring scope="prototype" 和scope="singleton"区分 -
卖火柴的老特工:
同类错误犯过,嗯记住
spring scope="prototype" 和scope="singleton"区分 -
zxl10059:
写的非常不错哈,必须得顶
spring scope="prototype" 和scope="singleton"区分
文章列表
<bean id="meetAction" class="com.web.actions.MeetsAction"
scope="prototype">
<property name="meetsService" ref="meetsService" />
</bean>
<!--
scope="prototype"没写的问题,项目中对一个表的增删该操作是用一个action,这个action有add,update,del ...