我正在尝试在 Eclipse 中使用 tomcat 运行此代码
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="serv">
<input type="submit">
</form>
</body>
</html>
当我单击提交按钮时,出现以下错误消息
HTTP Status 404 - /Ajax/serv
type Status report
message /Ajax/serv
description The requested resource (/Ajax/serv) is not available.
我在一个 JSP 项目上工作没有任何问题,直到我删除了 JSP 和 Servers 项目并创建了新项目。从那时起,它就不起作用了。
请问有什么建议吗?