Spring MVC JSP Edit View

Descripción

Create a JSP form view to edit an existing item


File Template: ✅


Prefix

jsp:edit


Scopes

jsp


Snippet de código

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
	<title>${1:Editar}</title>
</head>
<body>
	<h1>Editar item</h1>
	<form action="${item.id}" method="post">
		<label for="name">Name:</label>
		<input type="text" name="name" id="name" value="${item.name}" />
		<button type="submit">Actualizar</button>
	</form>
	<a href="../">Volver a la lista</a>
</body>
</html>