如何在Spring MVC中为所有/ folder / subfolder /请求提供静态index.html文件

时间:2018-08-17 13:05:32

标签: http spring-mvc

在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文件时,我都无法添加新的视图控制器。

0 个答案:

没有答案