SSM或Spring Boot开发中,mapper包中的mapper.xml没有编译到targger中的解决办法

SSM或Spring Boot开发中,mapper包中的mapper.xml没有编译到targger中的解决办法

在pom文件中加入如下配置:

<resources>  
  <!-- 编译之后包含xml   -->
  <resource>  
      <directory>src/main/java</directory>  
      <includes>  
      <include>**/*.xml</include>  
      </includes>  
      <filtering>true</filtering>  
  </resource>  
</resources>

 

posted @ 2021-03-23 21:05  rainbow70626  阅读(222)  评论(0编辑  收藏  举报