i have a table entity mapped as :
@Entity public class ItemsToRegister implements Serializable{ @Id @Column(name = \"ID_ITEM_TO_REGISTER\") @GeneratedValue
You'll need to escape the table name with tics(`) to make it case sensitive.
@Table(name = "`ITEMS_TO_REGISTER`")