我正在使用java playframework 1.2.4进行项目,并且有一个@Entity类。看起来像
@Entity
public class EmployeeType extends Model {
public static enum TYPE { HOURLY, DAILY, MONTHLY };
public static enum NATIONALITY { LOCAL, FOREIGN };
@Required
@Enumerated(EnumType.STRING)
public TYPE type;
@Required
@Enumerated(EnumType.STRING)
public NATIONALITY nationality;
}
在我的控制器类中,我想使用我的2个枚举属性获取EmployeeTypes的列表。
查询看起来像
Query query = JPA.em().createQuery("SELECT e FROM EmployeeType e where " +
"e.nationality = :nationality " +
"and e.type = :type");
query.setParameter("nationality", NATIONALITY.LOCAL);
query.setParameter("type", TYPE.HOURLY);
List<models.EmployeeType> employeeType = query.getResultList()
给出此错误:发生IllegalArgumentException:参数值[LOCAL]与类型[models.EmployeeType $ NATIONALITY]不匹配
我该怎么办?
最佳答案
该错误可能是由于您的enum
嵌套在您的实体中。您需要以实体名称访问它。
您可以将setParameter
代码更改为:-
query.setParameter("nationality", EmployeeType.NATIONALITY.LOCAL);
query.setParameter("type", EmployeeType.TYPE.HOURLY);