When the parameter *{mydata.value}
is enum then how to transform it into String in thymeleaf?
I want to compare
if:*{mydata.value == "aaa"}
It gives error. I think it is because I should do something like:
if:*{mydata.value.toString() == "aaa"}
.