Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not get a field value by reflection getter

I'm trying to filter a result set by a foreign key:

createCriteria(Person.class).add(Restrictions.ne("position", 1L)).list()

But getting this exception: org.hibernate.PropertyAccessException: could not get a field value by reflection getter of com.example.model.Position.id

Here are the necessary JPA entities (trimmed down to the necessary fields):

@Entity
@Table
public class Person {
    @Id
    @GeneratedValue
    private Long id;

    @ManyToOne
    @JoinColumn(nullable = false)
    @ForeignKey(name = "person_position_fkey")
    private Position position;

    public Long getId() {
        return id;
    }

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

    public Position getPosition() {
        return position;
    }

    public void setPosition(Position position) {
        this.position = position;
    }
}

@Entity
@Table
public class Position {
    @Id
    @GeneratedValue
    private Long id;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
}
like image 775
dtrunk Avatar asked Aug 13 '13 13:08

dtrunk


1 Answers

Try Restrictions.ne("position.id", 1L)

like image 58
Yurii Shylov Avatar answered Nov 10 '22 07:11

Yurii Shylov