[Spring MVC]設置welcome-file樣式失效/無法載入css,js文件
1.絕對路徑/相對路徑
web.xml里的welcome-file-list里設置默認訪問頁面為/html/index.html
但是在訪問時,頁面CSS都沒加載。
正常輸入網址卻沒問題。用/html/index.jsp也沒問題。配置如下
<welcome-file-list> <welcome-file>/html/index.html</welcome-file> </welcome-file-list>
CSS文件在與html文件夾同級的app目錄里。html文件里的CSS路徑為:app/main.css。
2.靜態資源攔截
在pom.xml加入,路徑根據所需修改
<resources> <resource> <directory>web</directory> <includes> <include>**/*.css</include> <include>**/*.less</include> <include>**/*.js</include> </includes> <filtering>false</filtering> </resource> <resources>