SSM框架maven项目无法打包编辑mapper下的xml文件

启动Tomcat报

Could not resolve resource location pattern [classpath:com/prac/dao/mapper/*.xml]: 
class path resource [com/prac/dao/mapper/] cannot be resolved to URL because it does not exist

巴拉巴拉一大推。

就是因为maven项目下无法打包编辑mapper下的xml文件。

这个时候在你的pom.xml文件中须如下配置。。

 
  
 
  

  test
    
        
            src/main/java
            
                **/*.xml
            
            true
        
    


这个时候重启小猫咪就OK拉。。。

你可能感兴趣的:(SSM框架maven项目无法打包编辑mapper下的xml文件)