试用mybatis时,Tomcat启动后报错Result Maps collection already contains value for ......
我把dao.xml上的resultmap部分删除、重新添加就不报错。跑了几次后就报错。请高手帮个忙解决这个问题。谢谢...
我把dao.xml上的resultmap部分删除、重新添加就不报错。跑了几次后就报错。
请高手帮个忙解决这个问题。
谢谢 展开
请高手帮个忙解决这个问题。
谢谢 展开
5个回答
展开全部
Tomcat启动后报错的原因是maven项目出现了问题,解决办法是用maven的tomcat插件部署。
自动部署后可以去tomcat的webapps看看,肯定是少文件,这里找不到,因为没编译这个类。只能手动部署。输入以下代码进行设置:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd ">
<context:component-scan base-package="com.bf.health" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
<property name="url" value="jdbc:oracle:thin:@192.168.62.89:1521/orcl"/>
<property name="username" value="BF_HEALTH_01"/>
<property name="password" value="aomei6289"/>
</bean>
<!-- 创建SqlSessionFactory,同时指定数据源-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory" />
</bean>
</beans>
自动部署后可以去tomcat的webapps看看,肯定是少文件,这里找不到,因为没编译这个类。只能手动部署。输入以下代码进行设置:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd ">
<context:component-scan base-package="com.bf.health" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
<property name="url" value="jdbc:oracle:thin:@192.168.62.89:1521/orcl"/>
<property name="username" value="BF_HEALTH_01"/>
<property name="password" value="aomei6289"/>
</bean>
<!-- 创建SqlSessionFactory,同时指定数据源-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory" />
</bean>
</beans>
2017-07-18
展开全部
Result Maps collection already contains value for
map 已经有值,。。。。。。。。。。。如果想排错,起码相关的配置、相关的代码
~
~
~
~
~
~
~
~
map 已经有值,。。。。。。。。。。。如果想排错,起码相关的配置、相关的代码
~
~
~
~
~
~
~
~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
能否把dao.xml的代码贴出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-07-30
展开全部
id 重了吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是数据操作数组大小
追问
没看懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询