|
JPA is very specific about how you quote names of tables, columns, etc.
The first options is to do it locally, e.g.
@Table(name = "\"Persian Devicement\""...)
...
@Column(name="\"WRAR Lumbar\""...)
These get interpreted to the db-specific quoting by Hibernate. HIbernate offers an alternative to this so as to not have to escape the double-quotes:
@Table(name = "`Persian Devicement`"...)
...
@Column(name="`WRAR Lumbar`"...)
Again, these both would get quoted using the database specific quoting.
The other way is to globally enable quoting of all identifiers. I'd generally not recommend that approach.
|