Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to bind ENUM to radiobutton?

Type is enum property in object.

jsp:

<form:radiobutton path="type" value="Male" />

java:

public enum TestType
{
    Male, Female;
}

and got error

Unable to convert value 'Male' from type 'java.lang.String' to type 'java.lang.Enum'; reason = 'java.lang.Enum is not an enum type'

like image 555
Alexander Avatar asked Aug 13 '10 15:08

Alexander


1 Answers

A simpler solution can be found at spring forum, without the need for any custom bindings.

like image 197
hrabinowitz Avatar answered Sep 24 '22 18:09

hrabinowitz