Spring控制器映射配置和静态资源

时间:2013-11-13 13:29:19

标签: java spring spring-mvc url-pattern static-resource

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

这是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>

这是testing-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";
    }
}

使用JavaScript声明静态文件的doView.jsp和getView.jsp文件的最后一个snipet:

<script src="testing/resources/js/jquery.js"></script>

有一件事我不明白 - 为什么我只输入http://localhost:8080/app/testing来获取doView.jsp但是为了获取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截获。这个配置的唯一优势是我不必两次输入“testing”来打开getView.jsp .;)

有没有人知道如何让mvc:resources标签在这种情况下工作?不,我不能将整个测试servlet的URL映射设置为“/”。 ;)

2 个答案:

答案 0 :(得分:1)

首先是问题的第一部分,这是正常的行为。你将/testing/*声明为你的Dispatcher servlet的url-pattern,这意味着/ testing /之后出现的所有“东西”都被spring认为是截获的。然后,您添加了@RequestMapping注释,并使用testing填充其值参数,这可能会导致混淆。您可以考虑使用 / ANOTHER_NAME 作为url-pattern,而不是通过测试测试并确定控制器定义上的请求映射。

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

<mvc:resources mapping="/resources/**"
           location="/, classpath:/WEB-INF/public-resources/"
           cache-period="10000" />

答案 1 :(得分:0)

请添加此jar

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

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