开发者社区> 问答> 正文

请教个关于spring mvc PageNotFound的问题

测试环境在之间本来是没有问题的,今天突然要做些测试于是启动项目,就出现如下的问题,发现很多请求都报pagenotfound 的错误,根据提示js和gif的文件其实都是在的,项目启动是正常的。请高人指点下 小弟不甚感激!!!

2012-09-27 18:22:43,797 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/js/jquery-1.5.1.min.js] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,828 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/login-top-bg.gif] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,845 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/login-wel.gif] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,860 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/login_bg.jpg] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,873 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/btn-bg2.gif] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,894 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/login-content-bg.gif] in DispatcherServlet with name 'hisun'
  2012-09-27 18:22:43,908 WARN [org.springframework.web.servlet.PageNotFound] -No mapping found for HTTP request with URI [/biz/images/logo2.png] in DispatcherServlet with name 'hisun'

展开
收起
a123456678 2016-03-13 15:59:07 2215 0
1 条回答
写回答
取消 提交回答
  • 正常,因为你在web.xml里配置了dispatcherservlet的url是/或者/*。导致页面上所有对图片的请求也会被路由进spring mvc。在你的配置文件里配置一下静态资源就好了。
    <mvc:resources mapping="/css/**" location="/css/" /><mvc:resources mapping="/images/**" location="/images/" /><mvc:resources mapping="/js/**" location="/js/" /> 
    2019-07-17 19:02:44
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
workshop专场-微服务专场-开发者动手实践营-微服务-Spring Cloud Alibaba 微服务全家桶体验 立即下载
云栖社区特邀专家徐雷Java Spring Boot开发实战系列课程(第20讲):经典面试题与阿里等名企内部招聘求职面试技巧 立即下载
微服务架构模式与原理Spring Cloud开发实战 立即下载

相关实验场景

更多