Я пытаюсь связать список в Thymeleaf, следовал инструкциям и искал здесь;У меня есть проблема в индексах для привязки при отправке, которые перепрыгивают, а затем превышаются.Сначала я подробно опишу код, основной элемент выглядит следующим образом:
package com.ziath.manu.stockcheck.model;
import java.util.UUID;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import org.apache.commons.lang3.builder.ToStringBuilder;
@Entity
public class StockItem {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private UUID id;
private String itemId;
private String description;
private Integer currentStockLevel;
private Integer warnStockLevel;
private Integer errorStockLevel;
private Boolean purchaseOrderPlaced;
public StockItem() {
super();
warnStockLevel = 0;
errorStockLevel = 0;
}
public StockItem(String itemId, String description, Integer stockLevel) {
this();
this.itemId = itemId;
this.description = description;
this.currentStockLevel = stockLevel;
}
public String getItemId() {
return itemId;
}
public void setItemId(String id) {
this.itemId = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getCurrentStockLevel() {
return currentStockLevel;
}
public void setCurrentStockLevel(Integer stockLevel) {
this.currentStockLevel = stockLevel;
}
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
public Integer getWarnStockLevel() {
return warnStockLevel;
}
public void setWarnStockLevel(Integer warnStockLevel) {
this.warnStockLevel = warnStockLevel;
}
public Integer getErrorStockLevel() {
return errorStockLevel;
}
public void setErrorStockLevel(Integer errorStockLevel) {
this.errorStockLevel = errorStockLevel;
}
public Boolean getPurchaseOrderPlaced() {
return purchaseOrderPlaced;
}
public void setPurchaseOrderPlaced(Boolean purchaseOrderPlaced) {
this.purchaseOrderPlaced = purchaseOrderPlaced;
}
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
}
Затем у нас есть обертка, чтобы список можно было связать:
package com.ziath.manu.stockcheck.model;
import java.util.ArrayList;
import java.util.List;
public class StockItems {
private List<StockItem> stockItems = new ArrayList<>();
public List<StockItem> getStockItems() {
return stockItems;
}
public void setStockItems(List<StockItem> stockItems) {
this.stockItems = stockItems;
}
}
Затем после этого мыУ вас есть шаблон тимелина, чтобы связать детали с формой:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Stock Level from Manu</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<form action="#" th:object="${formItems}" th:action="@{/saveStockLevelAlerts}" method="post">
<table>
<tr th:each="stockItem, itemStat : *{stockItems}">
<td th:text="${__${itemStat.index}__}" />
<td th:text="${stockItem.itemId}" />
<td th:text="${stockItem.description}" />
<td th:text="${stockItem.currentStockLevel}" />
<!-- if you want to know what this is go to https://www.baeldung.com/thymeleaf-list -->
<input type="hidden" th:field="${formItems.stockItems[__${itemStat.index}__].id}" th:value="${stockItem.id}">
<input type="hidden" th:field="${formItems.stockItems[__${itemStat.index}__].itemId}" th:value="${stockItem.itemId}">
<input type="hidden" th:field="${formItems.stockItems[__${itemStat.index}__].description}" th:value="${stockItem.description}">
<input type="hidden" th:field="${formItems.stockItems[__${itemStat.index}__].currentStockLevel}" th:value="${stockItem.currentStockLevel}">
<td><input th:field="${formItems.stockItems[__${itemStat.index}__].warnStockLevel}" th:value="${stockItem.warnStockLevel}"></td>
<td><input th:field="${formItems.stockItems[__${itemStat.index}__].errorStockLevel}" th:value="${stockItem.errorStockLevel}"></td>
</tr>
</table>
<input type="submit" id="submitButton" th:value="Save">
<input type="reset" id="resetButton" name="cancel" th:value="Cancel"/>
</form>
</body>
</html>
Так что это отображается очень хорошо и отображает элементы, которых 305. Когда я нажимаю "Отправить", я получаю все работает очень хорошо, пока я не нажму256 элементов (примечание - 256 может быть подсказкой, но это будет байтовая переменная!).Затем я получаю ошибку индексации границ следующим образом:
stock items size 256
com.ziath.manu.stockcheck.model.StockItem@50fa1f72[id=b9019869-0e10-4d24-bddd-173fb75f6570,itemId=Washer M3 Silver,description=Washer M3 Silver,currentStockLevel=26,warnStockLevel=0,errorStockLevel=0,purchaseOrderPlaced=<null>]
2019-02-01 12:54:55.509 ERROR 28408 --- [nio-8084-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.beans.InvalidPropertyException: Invalid property 'stockItems[256]' of bean class [com.ziath.manu.stockcheck.model.StockItems]: Index of out of bounds in property path 'stockItems[256]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 256, Size: 256] with root cause
Так что кажется, что я могу без проблем прочитать 305 элементов, но когда я пытаюсь добавить их снова, я предполагаю, что Thymeleaf должен бытьвыполните следующие действия:
- Создайте новый объект StockItem
- Получите список из объекта StockItems
- Добавьте этот StockItem в конец списка
Для каждого свойства возьмите StockItem в конце списка и установите свойство
Это работает нормально, пока мы не получим 256 элементов в списке.
Есть ли у кого-нибудьпример работы с большим списком и есть представление о том, что происходит?
Заранее спасибо за помощь.
Приветствия,
Нил