最近項目開發,發現springBoot項目在使用maven打包時,咱們靜態資源文件都放在resource目錄下面,大體以下:spring
在使用maven打包時,發現靜態資源沒有打進去。原來springBoot默認靜態資源路徑的時resources.maven
那解決靜態資源文件使用maven打包問題的解決方案就有兩種了:spring-boot
1.將靜態資源文件夾名從resource改成resourcesui
2.在工程pom.xml中加入resource目錄配置,手動去指定。咱們習慣使用resource目錄,因此使用了手動指定xml
<build>
<finalName>shengshi-property-management</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resource</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
</build>blog