解决Property ‘mapperLocations‘ was not specified or no matching resources found问题

问题描述

解决Property ‘mapperLocations‘ was not specified or no matching resources found问题_第1张图片

在编写mybatis映射文件时,将XML文件放到了包下,而不是resources文件夹下,maven在打包的时候,默认是不会把xml文件打包编译,因此需要手动在pom文件配置,让maven在编译时把xml文件也进行输出。

 

解决方案
在pom文件中加入以下代码


   
       
           
                src/main/java
               
                    **/*.xml
               

                false
           

       

   

参考 解决Property ‘mapperLocations‘ was not specified or no matching resources found问题_经常健身的文安的博客-CSDN博客
 

你可能感兴趣的:(#,Spring,#,SpringBoot,mybatis,java,maven)