求证spring配置文件中配置dataSource
dataSource的配置:<beanid="dataSource"destroy-method="close"class="org.apache.commons.dbc...
dataSource的配置:
<bean id="dataSource" destroy-method="close"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${driverClassName}" />
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
</bean>
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:cn/itcast/spring/jdbc/transaction/xml/jdbc.properties</value>
</property>
</bean>
Bean的配置
<bean id="personDao" class="cn.itcast.spring.jdbc.transaction.xml.PersonDaoImpl">
<property name="dataSource">
<ref bean="dataSource"/>
</property>
</bean>
personDao里没有setDataSource方法,spring会自动注入这个dataSource的吗? 展开
<bean id="dataSource" destroy-method="close"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${driverClassName}" />
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
</bean>
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:cn/itcast/spring/jdbc/transaction/xml/jdbc.properties</value>
</property>
</bean>
Bean的配置
<bean id="personDao" class="cn.itcast.spring.jdbc.transaction.xml.PersonDaoImpl">
<property name="dataSource">
<ref bean="dataSource"/>
</property>
</bean>
personDao里没有setDataSource方法,spring会自动注入这个dataSource的吗? 展开
3个回答
展开全部
personDao如果继承了JdbcDaoSupport这个父类就会有dataSource属性,若没有继承什么,且里面没有dataSource属性则不能注入
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以没有setDataSource方法,但必须有dataSource这个变量,可以用标签的方法来自动注入,spring 3.0以后支持用标签自动注入,但还是建议用 setDatasource方法,这样兼容性好一点。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不会,在启动的时候就报错了,告诉你没有write 方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询