SpringMVC访问不到默认页的问题。

在web.xml中配置了

     <welcome-file-list>
       <welcome-file>index.html</welcome-file>
    </welcome-file-list>

也访问不到静态资源。

原来是spirngmvc框架原因。

在springmvc.xml配置文件中加上

<mvc:default-servlet-handler/>

就能访问到默认页了。

posted @ 2016-05-25 09:36  CoderV的进阶笔记  阅读(1870)  评论(0编辑  收藏  举报