1. 程式人生 > >maven專案不載入頁面檔案的

maven專案不載入頁面檔案的

1.maven 的pom.xml可能有類似以下的程式碼

(1)不過濾java包裡的xml和properties檔案(預設只編譯.java檔案,其他都被過濾掉),不是導致maven專案不編譯頁面檔案的原因

<resource>
   <directory>src/main/java</directory>
   <includes>
      <include>**/*.properties</include>
      <include>**/*.xml</include>
   </includes>
<filtering>false</filtering> </resource>
(2)不過濾resources包裡的xml和properties檔案(預設都不過濾),所以導致了xml和properties不被過濾,但是其他檔案都被過濾掉了,例如頁面檔案等,除了xml和properties都被過濾掉了,所以classs包裡沒有頁面檔案

<resource>
   <directory>src/main/resources</directory>
   <includes>
      <include>
**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource>