例如:如果你的枚举类里定义是:
public static enum Gender {
MALE, FEMALE;
}
修改你的pojo:
@Enumerated(EnumType.STRING)
public Gender getGender() {
return gender;