Когда нажата кнопка отправки, ничего не происходит. Только щелкает и не вызывает метод контроллера. Совершенно не уверен, почему. Я пробовал несколько способов отправки. И внешняя форма и встроенные формы.
<table border="1">
<tr>
<td><spring:message code="label.id" /></td>
<td><spring:message code="label.name" /></td>
<td><spring:message code="label.abv" /></td>
<td><spring:message code="label.Buy" /></td>
<td><spring:message code="label.Sell" /></td>
<td><spring:message code="label.LastMod" /></td>
<td><spring:message code="label.Description" /></td>
<td><spring:message code="label.image" /></td>
<td><spring:message code="label.catagory" /></td>
<td><spring:message code="label.style" /></td>
<td><spring:message code="label.actions" /></td>
</tr>
<c:forEach items="${Beers}" var="Beers">
<tr>
<td>${Beers.id}</td>
<td>${Beers.name}</td>
<td>${Beers.abv}</td>
<td>${Beers.buyPrice}</td>
<td>${Beers.sellPrice}</td>
<td>${Beers.lastMod}</td>
<td>${Beers.description}</td>
<td><img src="../assets/images/no_image.jpg" alt="<spring:message code="label.image" />"/></td>
<td>${Beers.catId}</td>
<td>${Beers.styleId}</td>
<td>
//PROBLEM HERE
<form:form method="POST" action="/TasteLimerickBeersB/Beers/UpdateBeerPrice?id=${Beers.id}" modelAttribute="priceIncrease">
<label for="priceIncrease"><spring:message code="label.percentage" /></label>
<input type="text" name="priceIncrease" maxlength="4" max="100" pattern="[+-?0-9]+([\.][0-9]{0,2})?">
<button type="submit" value="Submit!"><spring:message code="submit.button" /></button>
</form:form>
</td>
</tr>
</c:forEach>