当前位置:   article > 正文

Springboot+mybatis plus 解决找不到mapper.xml问题_mybatis plus 依赖模块 mapper.xml扫描不到

mybatis plus 依赖模块 mapper.xml扫描不到

Springboot+mybatis plus 解决找不到mapper.xml问题

之前持久层框架用的是Springdata jpa ,但springdata jpa在写复杂sql语句,动态sql,我觉得是很不方便的。于是,我想试一下mybatis plus,但我在写好了dao层对应的mapper文件时,项目报错说找不到
mapper上对应的方法
报错图片
总结了项目报错的两点原因

1.springboot配置文件的书写问题

下面是我的application.properties的之前的写法
在这里插入图片描述
之后发现mapper路径得用/连接
在这里插入图片描述

2.在pom里配置xml资源

	<resources>
		<resource>
			<directory>src/main/java</directory>
			<includes>
				<include>**/*.xml</include>
			</includes>
		</resource>
	</resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

执行完1,2步,Springboot+mybatis plus 项目完美运行
在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号