1

我在拦截控制器对静态资源的请求时遇到问题。

这是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 映射设置为“/”。;)

4

2 回答 2

1

首先是您问题的第一部分,这是正常行为。您为 Dispatcher servlet 声明/testing/*为 url-pattern,这意味着 /testing/ 之后出现的所有“事物”都被 spring 考虑并因此被拦截。然后,您添加了一个@RequestMapping注释并填充了它的 value 参数,testing这可能会导致混淆。您可以考虑使用/ANOTHER_NAMEurl-pattern不是 testing 并将控制器定义上的请求映射保持为testing

对于第二部分,在我看来,您将 js 文件放在/src/main/resources中,这是一个私有安全文件夹,您可以考虑将其放在/src/webapp/public-resources 中,然后配置您的如下 :

<mvc:resources mapping="/resources/**"
           location="/, classpath:/WEB-INF/public-resources/"
           cache-period="10000" />
于 2013-11-13T13:44:40.827 回答
0

请添加这个罐子

<mvc:resources mapping="/resources/**" location="/resources/"/>
<mvc:annotation-driven/>

这个 jar 会自动以 maven/pom.xml 结构下载,但如果是你自己的 lib,那么你必须把这个 jarhamcrest-core-1.3.jar

于 2014-05-29T13:42:54.637 回答