maven 打包 java中的設定檔

來源:互聯網
上載者:User

標籤:tor   寫法   打包   目錄   位置   http   pom.xml檔案   資源   false   

轉寄地址 http://www.cnblogs.com/liuzy2014/p/5981824.html

一般情況下,我們用到的資源檔(各種xml,properites,xsd檔案等)都放在src/main/resources下面,利用maven打包時,maven能把這些資源檔打包到相應的jar或者war裡。 有時候,比如mybatis的mapper.xml檔案,我們習慣把它和Mapper.java放一起,都在src/main/java下面,這樣利用maven打包時,就需要修改pom.xml檔案,來把mapper.xml檔案一起打包進jar或者war裡了,否則,這些檔案不會被打包的。(maven認為src/main/java只是java的原始碼路徑)。網路上有很多方法,我大概試了下,幾種方法都可以,可以任選一種即可。否則打出來的war包是沒有mapper.xml的。 方法1,其中**/*這樣的寫法,是為了保證各級子目錄下的資源檔被打包。Xml代碼 收藏代碼 <build> <finalName>test</finalName> <!-- 這樣也可以把所有的xml檔案,打包到相應位置。 <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> <include>**/*.tld</include> </includes> <filtering>false</filtering> --filtering是表示設定檔中包括${}這種動態變更要不要替換成真實值,true表示替換,並且將該檔案打包。false表示不替換。但是include一旦寫上就肯定會將設定檔包含進war中 </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> <include>**/*.tld</include> </includes> <filtering>false</filtering> </resource> </resources> </build>

maven 打包 java中的設定檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.