在Spring MVC中,我对根index.html文件使用以下配置:
<mvc:resources mapping="/**" location="/website/"/>
<mvc:view-controller path="/" view-name="index.html"/>
我的静态网站上有无数个子文件夹,我打算为所有这些子文件夹添加自定义index.html
文件,而无需手动添加新的view-controllers
。
我想实现以下目标:如果用户打开foo/bar/buzz/etc/
,他们将看到foo/bar/buzz/etc/index.html
页,就像他们在地址栏中手动键入foo/bar/buzz/etc/index.html
一样。
如何在没有自定义Servlet的情况下通过Spring MVC配置为website/foo/bar/
视图设置所有website/foo/bar/index.html
URL?每次添加新的静态index.html文件时,我都无法添加新的视图控制器。