当前位置: 代码迷 >> Java Web开发 >> applicationContext.xml异常
  详细解决方案

applicationContext.xml异常

热度:560   发布时间:2016-04-17 00:45:03.0
applicationContext.xml错误
XML code
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:p="http://www.springframework.org/schema/p"     xmlns:context="http://www.springframework.org/schema/context"    xmlns:jee="http://www.springframework.org/schema/jee"     xmlns:tx="http://www.springframework.org/schema/tx"    xsi:schemaLocation="            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd            http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">    <!-- 导入资源文件 -->    <bean id="propertyConfigurer"        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">        <property name="locations">            <list>                <value>WEB-INF/database.properties                </value>            </list>        </property>    </bean>     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"        destroy-method="close" p:driverClassName="${jdbc.driver}" p:url="${jdbc.url}"        p:username="${jdbc.username}" p:password="${jdbc.password}" />        <!-- 集成ibatis -->    <bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">        <property name="configLocation" value="WEB-INF/sqlmap-config.xml" />        <property name="dataSource" ref="dataSource" />    </bean></beans>


错误提示:No setter found for property 'dataSource' in class 
 'org.springframework.orm.ibatis.SqlMapClientFactoryBean'

------解决方案--------------------
<!-- 集成ibatis -->
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">


这里的class是不是写错了?
他报错说SqlMapClientFactoryBean这个类没有setDatasource方法
  相关解决方案