IntelliJ Maven專案中無法找到package下的xml檔案
阿新 • • 發佈:2019-02-07
在Spring Boot與Mybatis專案中,可以將*Mapper.xml檔案和mapper介面一起放在mapper包中,這樣找起來比較方便,但需要在pom.xml中配置下,如下:
<build> <resources> <resource> <directory>src/main/java</directory> <!--配置此項是為了讓maven搬運Java目錄下的xml檔案--> <includes> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>