Hi all,
I am facing the issue that Hibernate adds on default the prefix “HTE_” to all my assigned entities. My question is if there is a possible way to disable this or set another default prefix?
Example:
@Entity
@Table(name = “TEST_TABLE”)
the above table name results in HTE_TEST_TABLE when connecting to the Oracle database
I am using:
Java 19
Spring Boot version v3.0.1
Hibernate-core version 6.1.6.Final
Apache Maven version 3.8.6
Oracle Database 21c Express Edition for Windows x64
Thanks in advance!