仓廪实则知礼节,衣食足则知荣辱。这篇文章主要讲述关于mapper接口与mapper.xml文件在同包运行找不到问题解决相关的知识,希望能为你提供帮助。
springboot中解决方案一:
将mapper映射文件放到resources下,必须与mapper接口相同结构,并且在主启动类添加@MapperScan("com.offcn.mapper")注解扫描包
文章图片
【关于mapper接口与mapper.xml文件在同包运行找不到问题解决】
文章图片
解决方案二:
直接在pom.xml中配置插件
< !--将java目录下的.xml/.properties文件复制到resources目录下-->
< build>
< resources>
< resource>
< directory> src/main/java< /directory>
< includes>
< include> **/*.properties< /include>
< include> **/*.xml< /include>
< /includes>
< filtering> false< /filtering>
< /resource>
< resource>
< directory> src/main/resources< /directory>
< includes>
< include> **/*.*< /include>
< /includes>
< filtering> false< /filtering>
< /resource>
< /resources>
< plugins>
< plugin>
< groupId> org.springframework.boot< /groupId>
< artifactId> spring-boot-maven-plugin< /artifactId>
< /plugin>
< /plugins>
< /build>
推荐阅读
- Cognizant最新热门面试题精品合集!
- Mybaits 源码解析 ----- Select 语句的执行过程分析(下篇)(Mapper方法是如何调用到XML中的SQL的()全网最详细,没有之一)
- Android Socket 通信
- SpringMVC注解@RequestMapping之produces属性导致的406错误
- RTP推流服务器EasyRTMP实现内网摄像头RTSP拉流转码RTMP推流到EasyRTMP-Android音频采集流程是什么()
- EasyRTMP实现内网摄像头RTSP拉流转码RTMP推流到RTMP服务器EasyRTMP-Android视频采集流程是什么()
- Mac系统下编译Android系统源代码
- RTSP播放器网页web无插件直播流媒体音视频播放器EasyPlayer-RTSP-Android解码获取视频帧的方法
- Android Studio报错问题集锦