引起:org.hibernate.QueryException:无法解析内部枚举类的属性

时间:2015-01-14 12:23:47

标签: java hibernate jpa enums

拥有此域类并在spring 3.2.4下使用与JPA集成的hibernate 3.2.6

@Entity
public class PriorityDeviceKeyword {

    public enum PriorityDeviceKey {

        ALL     ("ALL",    "ALL DEVICES"),
        IOS     ("IOS",    "IOS"),
        ANDROID ("ANDROID","ANDROID");

        private final String name;

        private final String id;

        private PriorityDeviceKey(String name, String id) {
            this.name = name;
            this.id = id;
        }

        public String getName() {
            return name;
        }

        public String getId() {
            return id;
        }
    }

    @Id
    private Long id;

    @Column(name = "key")
    private PriorityDeviceKey key;


    @ManyToMany
    @JoinTable(name = "t_priority_device_set", joinColumns = @JoinColumn(name = "priority_device__id", referencedColumnName = "id"))
    private List<PriorityDevice> priorityDevices;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public PriorityDeviceKey getKey() {
        return key;
    }

    public void setKey(PriorityDeviceKey key) {
        this.key = key;
    }

    public List<PriorityDevice> getPriorityDevices() {
        return priorityDevices;
    }

    public void setPriorityDevices(List<PriorityDevice> priorityDevices) {
        this.priorityDevices = priorityDevices;
    }
}

执行此查询时,我执行的DAO类中有以下方法

@Override
    @SuppressWarnings("unchecked")
    public Set<PriorityDevices> findPriorityAreas(PriorityDevicesKey key) {

        String jpql = "from PriorityDevices as pak where pak.key.name = :keyName";

        Query query = entityManager.createQuery(jpql);
        query.setParameter("keyName", key.getName());       
        List<PriorityDevices> priorityDevices =  query.getResultList();
        return new HashSet<PriorityDevices>(priorityDevices);
    }

我得到了应用程序抛出的异常:

2015-01-14 13:14:50,936 ERROR [com.controller.errors.Error500Controller] - Application thrown an exception
java.lang.IllegalArgumentException: org.hibernate.QueryException: could not resolve property: name of: com.domain.PriorityDevicesKeyword [from com.domain.PriorityDevicesKeyword as
        at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException(AbstractEntityManagerImpl.java:624)
        at org.hibernate.ejb.AbstractEntityManagerImpl.createQuery(AbstractEntityManagerImpl.java:96)
        at sun.reflect.GeneratedMethodAccessor440.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2 个答案:

答案 0 :(得分:1)

认为这些更改可能适合您:

@Column(name = "key")
@Enumerated(EnumType.STRING)
private PriorityAreaKey key;

String jpql = "from PriorityAreaKeyword as pak where pak.key = :keyName";
Query query = entityManager.createQuery(jpql);
query.setParameter("keyName", key); 

答案 1 :(得分:1)

Hibernate将枚举存储为oridnal。或者,当字段使用@Enumerated(EnumType.STRING)注释时,作为具有Enum短名称的字符串。带注释的有效名称为{ALL, IOS, ANDROID}时。无论哪种方式只有一个字段,枚举本身的属性都没有存储,毕竟它们是不变的。

如果要查询枚举值,则必须查询pak.key = :key并使用key作为参数。 Hibernate将对序数或字符串进行必要的转换。