I have a domain object that has an enum property and I want to display a dropdown list with all possible enum values in the form for this object. Imagine the following objec
this worked for me:
Java:
public enum RoleEnum { SUPER_ADMIN("SUPER_ADMIN"), RESTAURANTE_ADMIN("RESTAURANTE_ADMIN"); private final String roleCode; private RoleEnum(String roleCode) { this.roleCode = roleCode; } }
Thymeleaf: