为什么我的spring中配置bean是不允许用singleton属性 10

<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schem... <?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<!-- 定义数据源bean -->
<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/searchdb"/>
<property name="username" value="root"/>
<property name="password" value=""/>
</bean>
<bean id="searchService" class="com.luceneheritrixbook.searchengine.service.impl.SearchServiceImpl">
<property name="searchResultDao">
<ref local="searchResultDao"/>
</property>
</bean>
<bean id="searchResultDao" class="com.luceneheritrixbook.searchengine.service.dao.impl.SearchResultDaoImpl">
<property name="dataSource">
<ref local="myDataSource"/>
</property>
</bean>
</beans>
这是我的spring配置。两个bean中如果加入singleton="false"都会提示。bean中不允许加入singleton属性。请问为什么??
展开
 我来答
帐号已注销
2012-07-22 · 超过27用户采纳过TA的回答
知道答主
回答量:84
采纳率:100%
帮助的人:48.4万
展开全部
这个版本问题吧,应该是属性scope=“singleton”或者scope=“prototype”
spring新版本中取消了singleton="true/false"的设置,增加了更多选择行
有鹰的天空nice
2019-03-25
知道答主
回答量:2
采纳率:0%
帮助的人:1730
展开全部

我给你看看源码哈,

在BeanDifinitionParserDelegate里是这样判断的,你知道原因了吧。

	//singleton---现在废弃  都用scope
if (ele.hasAttribute(SINGLETON_ATTRIBUTE)) {
error("Old 1.x 'singleton' attribute in use - upgrade to 'scope' declaration", ele);
}
else if (ele.hasAttribute(SCOPE_ATTRIBUTE)) {
bd.setScope(ele.getAttribute(SCOPE_ATTRIBUTE));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式