web.xml配置
<?xml version="1.0" encoding="utf-8"?>
id="taotao" version="2.5">taotao-sso
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp
contextconfiglocation
org.springframework.web.context.contextloaderlistener
characterencodingfilter
org.springframework.web.filter.characterencodingfilter
encoding
utf-8
/*taotao-sso
org.springframework.web.servlet.dispatcherservlet
contextconfiglocation
classpath:spring/springmvc.xml1/
可以看見前端控制器的攔截條件是「/」,所以為了避免瀏覽器在請求靜態資源時,被前端控制器攔截被誤認為是訪問某個handler。這裡要在springmvc中配置靜態資源對映。
spring mvc 中靜態資源404 302錯誤
2019 3 22補充 在新的專案中也偶爾遇到資源被攔截的情況 前提我已經設定了各種靜態資源不被攔截的措施 至今仍然沒能找到具體原因,所以在後面的專案採用了下面的dispatcher策略,只有 manager 開頭的請求會走springmvc,其他請求使用預設的分發排程策略。在ssm專案中,已經為靜...
SpringMVC 配置靜態資源
如何你的dispatcherservlet攔截 do這樣的url,就不存在訪問不到靜態資源的問題。如果你的dispatcherservlet攔截 攔截了所有的請求,同時對 js,jpg的訪問也就被攔截了。目的 可以正常訪問靜態檔案,不要找不到靜態檔案報404。方案一 啟用tomcat的default...
springMVC訪問靜態資源
web.xml springmvcservlet name org.springframework.web.servlet.dispatcherservletservlet class contextconfiglocationparam name classpath config spring s...