есть две связанные таблицы Hibernate -onetomany
Как в <OPTION SELECTED><b>Поместить значение переменной из thymeleafe "${el.rule.name}"</b>/OPTION>
form method="post">
<input type=" text" th:value="${el.fullname}" name="name" placeholder="Фамилия имя отчество" class="form-control"><br>
<br>
<p>
<input type=" text" th:value="${el.smallname}" name="name" placeholder="Фамилия И.О." class="form-control">
</p>
<br>
<p>
<select name="select" required="required">
<option selected>Как сюда поместить значение переменной Thymeleaf??</option>
<option th:each="ru: ${rule}"
th:value="${ru.id}"
th:text="${ru.name}">
</option>
</select>
<p>
<input type=" text" th:value="${el.rule.id}" name="name" placeholder="Фамилия И.О." class="form-control">
</p>
</form>