gpt4 book ai didi

java - @RequestMapping 没有按预期工作

转载 作者:行者123 更新时间:2023-12-01 18:48:19 27 4
gpt4 key购买 nike

让 Tomcat 启动并自动显示 index.jsp 文件的内容没有任何问题。然而,当我尝试使用 @Controller 和 @RequestMapping 时,我遇到了错误。这是我的 Controller 类

package fifteenth;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class AddController {

@RequestMapping("/add")
public String add() {
return "display.jsp";
}

}

这是我的 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<servlet>
<display-name>Fifteenth</display-name>
<servlet-name>fifteenth</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>fifteenth</servlet-name>
<url-pattern>*.htm</url-pattern>

</servlet-mapping>
</web-app>

我认为这是我的调度程序 servlet,名为十五号-servlet.xml

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


<ctx:annotation-config></ctx:annotation-config>
<ctx:component-scan base-package="fifteenth"></ctx:component-scan>
</beans>

我的index.jsp 文件的内容

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form action="add">
<input type="text" name="t1">
<input type="text" name="t2">
<input type="submit">

</form>
</body>
</html>

正如之前所说,index.jsp 工作正常,但是当我单击该按钮时,我收到 404 未找到错误,表示未找到“fifteenth/add”。

最佳答案

您的 servlet 映射已设置为映射 *.htm URL。

尝试将表单操作更改为add.htm,效果应该会更好。

关于java - @RequestMapping 没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59776903/

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