gpt4 book ai didi

java - 实现资源映射后,Spring MVC 映射不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 07:44:28 25 4
gpt4 key购买 nike

在我的上下文文件中,我想添加行以便能够访问静态内容。在我添加它之前,一切正常,但在添加它之后,我无法访问具有某些 Controller 的页面,并且收到此警告:WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/fit/] in DispatcherServlet with name 'mvc-dispatcher' 。添加之前 <mvc:resources mapping="/resources/**" location="/resources/" />到上下文文件,它看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

<context:annotation-config />

<!-- Handles HTTP GET requests for /resources/** by efficiently serving
up static resources in the ${webappRoot}/resources directory -->




<context:component-scan base-package="cz.cvut.fit.genepi.controllers" />
<import resource="classpath:applicationContext-security.xml" />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>

<mvc:resources mapping="/resources/**" location="/resources/" />
</beans>

知道如何解决这个问题吗?

PS:这些页面受到 Spring 安全性的保护,但我不认为这可能是问题所在。

最佳答案

每个调度程序 servlet 都以 -servlet 结尾。尝试重命名您的调度程序 servlet。

在初始化 DispatcherServlet 时,框架将在 Web 应用程序的 WEB-INF 目录中查找名为 [servlet-name]-servlet.xml 的文件,并创建其中定义的 bean。

关于java - 实现资源映射后,Spring MVC 映射不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15536453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com