gpt4 book ai didi

java - Spring MVC - 在名称为 'servletname' 的 DispatcherServlet 中未找到带有 URI [/HelloWeb/WEB-INF/jsp/hello.jsp] 的 HTTP 请求的映射

转载 作者:太空宇宙 更新时间:2023-11-04 12:48:57 26 4
gpt4 key购买 nike

我正在创建一个基本的 hello world Spring MVC 应用程序。但它无法找到 URL 映射。我进行了很多搜索,但没有找到任何令人满意的解决方案。我在控制台上收到以下错误。

org.springframework.web.servlet.PageNotFound noHandlerFound WARNING: No mapping found for HTTP request with URI [/HelloWeb/WEB-INF/jsp/hello.jsp] in DispatcherServlet with name 'HelloController'

任何人都可以帮我解决这个问题吗?下面是我的代码

HelloController.java 包 com.tutorialspoint;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;

@Controller
public class HelloController{

@RequestMapping(value="/" , method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello Spring MVC Framework!");

return "hello";
}

}

web.xml

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">

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

<servlet-mapping>
<servlet-name>HelloController</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

HelloController-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">

<context:component-scan base-package="com.tutorialspoint" />



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

hello.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>See this first MVC page here</title>
</head>
<body>
<h2>${message}</h2>
<h6>Check if above sentence is visible</h6>
</body>
</html>

最佳答案

有几件事我有点困惑。

首先,您不应该将 web.xml 中的 servlet 命名为您的 Controller 。将其命名为其他名称,但一定要与您的 spring-config-xml 文件相匹配。所以也许 <servlet>
<servlet-name>HelloDispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

然后将当前的 HelloController-servlet.xml 命名为 HelloDispatcher-servlet.xml。

第二,确定HelloController-servlet.xml位于/WebContent/WEB-INF文件夹中?

第三,我不确定您使用什么 URL 来访问测试应用程序,但我不能 100% 确定您可以只映射/,可能需要执行/* 或 *.html,然后尝试使用/hello.html

关于java - Spring MVC - 在名称为 'servletname' 的 DispatcherServlet 中未找到带有 URI [/HelloWeb/WEB-INF/jsp/hello.jsp] 的 HTTP 请求的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36032593/

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