目前我在maven web应用程序中集成了springfox(swagger)。我已经定制了swagger-ui.html并将swagger-ui.html放在src / main / webapp / static目录中。我可以使用文件名(URL:http://localhost:7999/myApp/swagger-ui.html)加载swagger-ui.html。但是我需要使用像http://localhost:7999/myApp/documentation/这样的重定向网址来加载swagger-ui.html。你能不能让我明白我们如何使用springfox做到这一点。以下是我的mvc资源配置:
<mvc:resources mapping="swagger-ui.html" location="/WEB-INF/static/swagger-ui.html"/>
<mvc:resources mapping="/webjars/**" location="classpath:/META-INF/resources/webjars/"/>