こんな感じ。
==============
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "ID", unique = true, nullable = false)
public long getId() {
return this.id;
}
==============
http://www.hibernate.org/hib_docs/reference/en/html/mapping.html
ハマッた。。
コメントする