Привязка списка весенних загрузок
Привет каждому телу ,
Я пытаюсь сохранить список заказов в своем контроллере, но у меня был другой тип заказа, и каждый тип имел некоторые конкретные записи, как я могу это сделать .Я использую в своем классе сущностей тип наследования равный joined
("@Inheritance(strategy = InheritanceType.JOINED)")У кого-нибудь была идея, как это сделать ?
Что я уже пробовал:
<form action="#" th:action="@{/order/save}" th:object="${form}" method="post"> <fieldset> <input type="submit" id="submitButton" th:value="Save"> <input type="reset" id="resetButton" name="reset" th:value="Reset"/> <table> <thead> <tr> <th> Title</th> <th> Author</th> </tr> </thead> <tbody> <tr th:each="order, itemStat : *{orders}"> <td><input th:field="*{orders[__${itemStat.index}__].title}" /></td> <td><input th:field="*{orders[__${itemStat.index}__].author}" /></td> </tr> </tbody> </table> </fieldset> </form>