标签:使用 文件 io html htm res app web
MVC在生成项目的时候会生成的WEB-INF底下.这个文件夹下面的文件是受保护的,都会走MVC的流程,
但是我希望在WebContent底下可以使用静态页面,
那么需要进入springmvc-servlet.xml 页面,加上一句话: <mvc:resources mapping="/**" location="/**" />
这样,使用mvc:resources标签,可以将根目录下的文件全部定义为静态html,直接访问即可.
需要放到文件夹中:
<mvc:resources mapping="/commons/**" location="/commons/**" />
标签:使用 文件 io html htm res app web
原文地址:http://www.cnblogs.com/aspirant/p/3878972.html