1. 程式人生 > >Spring Boot 資源目錄對映到工程目錄

Spring Boot 資源目錄對映到工程目錄

application.properties新增如下配置即可 所有URL指定資源優先到工程目錄下的other/static/裡尋找,然後再到資源目錄下的static尋找

spring.mvc.static-path-pattern=/** spring.resources.static-locations=file:other/static/,classpath:/static/