spring-mvc-matrix-variables - manually merging

This commit is contained in:
slavisa-baeldung
2016-06-15 20:25:41 +02:00
parent a5bde90d40
commit 70322e1a44
10 changed files with 242 additions and 15 deletions
@@ -0,0 +1,31 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Form Example - Register a Company</title>
</head>
<body>
<h3>Welcome, Enter The Company Details</h3>
<form:form method="POST" action="/spring-mvc-java/addCompany"
modelAttribute="company">
<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><input type="submit" value="Submit"/></td>
</tr>
</table>
</form:form>
</body>
</html>
@@ -0,0 +1,20 @@
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<html>
<head>
<title>Spring MVC Form Handling</title>
</head>
<body>
<h2>Submitted Company Information</h2>
<table>
<tr>
<td>Name :</td>
<td>${name}</td>
</tr>
<tr>
<td>ID :</td>
<td>${id}</td>
</tr>
</table>
</body>
</html>
@@ -22,6 +22,10 @@
<td><form:label path="contactNumber">Contact Number</form:label></td>
<td><form:input path="contactNumber" /></td>
</tr>
<tr>
<td><form:label path="workingArea">Working Area</form:label></td>
<td><form:input path="workingArea" /></td>
</tr>
<tr>
<td><input type="submit" value="Submit" /></td>
</tr>
@@ -20,6 +20,10 @@
<td>Contact Number :</td>
<td>${contactNumber}</td>
</tr>
<tr>
<td>Working Area :</td>
<td>${workingArea}</td>
</tr>
</table>
</body>
</html>