package org.springframework.issues.data; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="books") public class Book { @Id private long id; private String name; public Book() { } public Book(long id, String name) { this.id = id; this.name = name; } public void setId(long id) { this.id = id; } public long getId() { return this.id; } public void setName(String name) { this.name = name; } public String getName() { return this.name; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + (int) (id ^ (id >>> 32)); result = prime * result + ((name == null) ? 0 : name.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Book other = (Book) obj; if (id != other.id) return false; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } }