spring+mybatis,tomcat启动异常

发布于 2022-09-04 04:19:37 字数 1123 浏览 16 评论 0

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse config resource: ServletContext resource [/WEB-INF/mybatis-config.xml]; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. Cause: java.lang.NullPointerException
是映射文件的问题,在mybatis配置文件中去掉映射文件就没有问题
mapper文件:
<mapper>
<resultMap type="../org.gocom.crm.bean.Operator" id="operators">
<result property="userId" column="userid"/>
<result property="userName" column="operatorname"/>
<result property="password" column="password"/>
</resultMap>
<select id="queryOperator" resultType="operators">
<![CDATA[
select userid,operatorname,password from ac_operator where rownum<=10
]]>
</select>
</mapper>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文