HibernateとEhcacheで可変IDを使用するのは安全ですか? hashCode
はIDに基づいています。HibernateとEhcacheではIDの変更が可能ですか?
class Company implements Serializable {
String code; // PK
public int hashCode() {
return code == null ? 17 : code.hashCode();
}
public boolean equals(Object o) {
// Some obvious equals checking for type and field equality
}
}