我在拦截控制器对静态资源的请求时遇到问题。
这是web.xml(与问题相关的部分):
<servlet>
<servlet-name>testing</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>testing</servlet-name>
<url-pattern>/testing/*</url-pattern>
</servlet-mapping>
这是测试-servlet.xml:
<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
这是控制器类源代码:
@Controller
@RequestMapping(value = "/testing")
public class TestingController {
@RequestMapping(method = RequestMethod.GET)
public String doSomething() {
return "doView";
}
@RequestMapping(value = "/getSomething", method = RequestMethod.GET)
public String getSomething(@RequestParam String id) {
return "getView";
}
}
最后一段 doView.jsp 和 getView.jsp 文件用 JavaScript 声明静态文件:
<script src="testing/resources/js/jquery.js"></script>
有一件事我不明白 - 为什么我只能通过输入获得 doView.jsphttp://localhost:8080/app/testing
但为了获得 getView.jsp 我需要输入http://localhost:8080/app/testing/testing/getSomething
(“测试”键入两次)。
现在这个主题的主要原因 - 当我从类定义中删除请求映射注释时(@RequestMapping(value = "/testing")
并将它们留在方法上,那么我根本无法获取 jquery.js 文件。当我输入时,http://localhost:8080/app/testing/resources/js/jquery.js
我得到 doView.jsp。有'浏览器中的开发人员工具未报告任何问题(缺少 jquery.js 文件或其他内容)-此请求仅被 Spring 的调度程序 servlet 拦截。此配置的唯一优点是我不必在中键入“测试”两次为了打开 getView.jsp。;)
有谁知道解决方案如何使mvc:resources
标签在这种情况下工作?不,我不能将整个测试 servlet 的 URL 映射设置为“/”。;)