hibernate h2 embeddable list expected "identifier"

I had the same problem with Spring and H2 database for tests, My entity had the field name "interval", I renamed to "inter" and resolved the problem.

So, these errors happen due to a sql reserved names in entities.


Turns out I was being dumb and named a column "Order". Wonder why H2 wasn't happy :upside_down:

Changed the variable name to something else and it worked!


I have the same problem while naming the fields: private String to and private String from , changed to ex. dayTo , dayFrom , and it worked.


Got same issue with Order as entity. Changed table name to "orderz" and goes on.