You need to escape the name column:
@Column(name="`user`")
Or you could set the hibernate.globally_quoted_identifiers configuration property to true.
You need to escape the name column:
@Column(name="`user`")
Or you could set the hibernate.globally_quoted_identifiers configuration property to true.