Я пытаюсь создать простую форму и отправить ее с помощью Spring MVC. Я попробовал несколько способов сделать это, все страницы отображаются на web.xml
, и я проверяю его навигацию, используя простые страницы. Но когда кнопка нажата, я получаю следующую ошибку:
HTTP Status 404 – Not found
Type Status Report
Message /addEmployee
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/9.0.20
employeeHome.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Cadastro</title>
</head>
<body>
<h1>Cadastro</h1>
<form:form method="POST" action="/addEmployee" modelAttribute="employee">
<table>
<tr>
<td><form:label path="name">Name</form:label></td>
<td><form:input path="name"/></td>
</tr>
<tr>
<td><form:label path="id">ID</form:label></td>
<td><form:input path="id"/></td>
</tr>
<tr>
<td><form:label path="contactNumber">Contact Number</form:label></td>
<td><form:input path="contactNumber"/></td>
</tr>
<tr>
<td><input type="submit" value="Submit"/></td>
</tr>
</table>
</form:form>
</body>
</html>
Контроллер: SpringMVCHelloWorld
@Controller
public class SpringMVCHelloWorld {
// Employee
@GetMapping("/employeeHome")
public ModelAndView showForm() {
return new ModelAndView("employeeHome", "employee", new Employee());
}
@RequestMapping(value = "/addEmployee", method = RequestMethod.POST)
public String addEmployee(@ModelAttribute("employee") Employee employee, BindingResult result, ModelMap model) {
if(result.hasErrors()) {
return "error";
}
model.addAttribute("name",employee.getName());
model.addAttribute("contactNumber",employee.getContactNumber());
model.addAttribute("id", employee.getId());
return "employeeView";
}
}
Я думаю, что проблема в том, чтобы установить action
на странице .jsp и @RequestMapping(value = "/addEmployee", method = RequestMethod.POST)
, но я не знаю, что не так.
РЕДАКТИРОВАТЬ: Проблема решена
Изменение
<form:form method="post" action="/addEmployee" modelAttribute="employee">
до
<form:form method="post" action="addEmployee" modelAttribute="employee">