Invalid bound statement (not found): com.xxx.xxx.mapper.xxx

开发工具:IDEA

问题现象:访问接口时Dao调用报错找不到mapper

mapper和entity是逆向工程生成的  访问报这个错误。

 Invalid bound statement (not found): com.xxx.repository.mapper.SchoolInfoMapper.countByExample

 

解决方法:


		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
		
			
				src/main/resources
			
			
				src/main/java
				false
				
					**/mapping/*.xml
				
			
		
	

配置你的mapping的路径

问题解决

问题还有可能是其他原因造成的可以参考

https://blog.csdn.net/weixin_42204641/article/details/81155726

你可能感兴趣的:(开发遇到的问题)