<div> <div>상품 종류</div> <div th:each="type : ${itemType}" class="form-check form-check-inline"> <input type="radio" th:field="*{itemType}" th:value="${type.name()}" class="form-check-input"> <label class="form-check-label" th:for="${#ids.prev('itemType')}" th:text="${type.description}"></label> </div> </div>
-> name() -> 열거 객체의 문자열을 리턴