首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Ibatis+Spring+webwork搭建框架所遇到的有关问题

2013-09-11 
Ibatis+Spring+webwork搭建框架所遇到的问题问题:org.springframework.beans.factory.BeanCreationExcepti

Ibatis+Spring+webwork搭建框架所遇到的问题
问题:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userService' defined in class path resource [applicationContext-service-user.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: sqlMapClient is required
Caused by: java.lang.IllegalArgumentException: sqlMapClient is required
我的配置 :
<bean id="sqlMapClient" value="classpath:sql-map-config.xml"/>
        <property name="dataSource" ref="dataSource"/>
    </bean>
   
     <bean id="baseDao" ref="baseDao"></property>
</bean>

IbatisBaseDao.java代码:
public class IbatisBaseDao extends SqlMapClientDaoSupport {
}
所要引用的代码:
public class UserServiceImpl extends SqlMapClientDaoSupport implements UserService {

protected IbatisBaseDao dao;


只要把extends SqlMapClientDaoSupport 去掉就OK了

问题待续中……
我的异常网推荐解决方案:org.springframework.beans.factory.BeanCreationException:,http://www.myexception.cn/j2ee/10759.html

热点排行