gpt4 book ai didi

java - Spring MVC : RequestMapping not working, 未识别 URL 路径

转载 作者:行者123 更新时间:2023-11-30 04:56:48 24 4
gpt4 key购买 nike

我用谷歌搜索了这个问题,但似乎没有人有与我完全相同的问题。

我正在尝试设置一个简单的 Spring MVC 应用程序。这些是相关文件:

web.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">

...

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
<servlet-name>MyApp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>MyApp</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

myapp-servlet.xml

<?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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
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">

<mvc:annotation-driven/>
<context:component-scan base-package="myapp.gui"/>

<bean class= "org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>

HomeController.java

@Controller
public class HomeController
{
@RequestMapping({"/"})
public String showHomePage(Map<String,Object> model)
{
return "home";
}
}

我在 WEB-INF\views 中有一个 home.jsp。问题是我的应用程序没有返回主页。我刚刚收到 404,尽管 Spring 正在找到我的 Controller (日志是这样说的),但它给出了错误:未识别 URL 路径。

有人能看出我做错了什么吗?

保罗

最佳答案

您可以尝试使用/app/* 作为 servlet 映射 url,使用/home 作为 RequestMapping。然后尝试使用/app/home 访问它。映射/* 存在某些问题 - 一旦您获得与/app 一起使用的映射的其余部分 - 我们可以考虑删除/app

关于java - Spring MVC : RequestMapping not working, 未识别 URL 路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8285826/

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