在spring mvc项目中新建index.html页面被拦截 无法访问

在webapp下新建一个index.html,但是输入http://localhost:8080/index.html报404错误,无法访问,而新建项目时自动生成的index.jsp可以访问。

控制台报错信息如下:

 警告 [http-nio-8080-exec-61] org.springframework.web.servlet.PageNotFound.noHandlerFound No mapping found for HTTP request with URI [/index.html] in DispatcherServlet with name 'springMVC'

说是url处理器没有映射,原因是在web.xml中,将所有url拦截下来,但是没有给对应的dispatcherServlet处理,因此访问不到

 springMVC
    /
将拦截路径修改成别的路径,不要拦截到index.html就好了。

例如将拦截路径修改如下:

springMVC
/Index/HelloWorld

你可能感兴趣的:(java开发,spring,mvc,拦截路径)