如果我的 web-context.xml 中的 mvc:resources 标记未映射到相同的文件名,我会在 Jetty 中得到 404:
<mvc:resources mapping="/some-file" location="/WEB-INF/js/some-file.js" />
以下工作正常:
<mvc:resources mapping="/some-file.js" location="/WEB-INF/js/some-file.js" />
如何将文件映射到 URL 空间中的不同文件名?