概述
今天使用IDEA跑项目的时候报错了,意思是我的项目编译后没有mapper文件在target下面。
报错类似如下:
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [spring-mybatis.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type 'java.lang.String' to required type 'org.springframework.core.io.Resource[]' for property 'mapperLocations'; nested exception is java.lang.IllegalArgumentException: Could not resolve resource location pattern [org/panda/mapping/*.xml].......
然后,玩这个这么久了,不可能不配置mapper啥,就觉得很神奇。
在网上查阅了哈,发现不止我这样,哈哈哈。
其实就是有些使用的IDEA会这样,有些又不会。
出现这个后在pom.xml里面的<build>标签里面添加:
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
重新启动tomcat发现被maven打包到target下面了。
希望能帮到大家
最后
以上就是满意微笑为你收集整理的关于IDEA启动tomcat出错问题的全部内容,希望文章能够帮你解决关于IDEA启动tomcat出错问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复