解決Maven靜態資源過濾問題
阿新 • • 發佈:2021-06-28
軟體版BpoST本:
- IDEA 2020.1
- Maven 3.6.3
認識靜態資源和動態資源
- 靜態資源,包含HTMl,圖片,等不需要與互動的一類檔案
- 動態資源:需要與資料庫互動,可以根據需要顯示不同的資料,不需要修改頁面
問題描述
在src或其子資料夾下寫了配置檔案卻無法被匯出到target,導致程式發生錯誤無法執行
寫這個部落格的時候是在mybatis配置的過程中遇到的問題,以前也遇到過,索性寫下來趴
解決步驟
在pom.xml中加入
<build> &BpoSTlt;resources> <resource> <directory>src/main/</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> </resources> </build>
Tip: 如果你的目錄結構或靜態資源型別與上面的不同,請隨機應變
clean一下去掉原來的target
重新執行程式
Tip: 如果遇到IDEA編碼不對提示一堆UTF-8的情況,去Settings裡面www.cppcns.com改一下編碼即可
結局
參考
http://maven.apache.org/guides/getting-started/index.html#how-do-i-filter-resource-files
https://blog.csdn.net/weixin_39206909/article/details/109www.cppcns.com484178
到此這篇關於解決Maven靜態資源過濾問題的文章就介紹到這了,更多相關Maven靜態資源過濾內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!