How to set default schema in JPA

2k Views Asked by At

I am working on one application using JPA orm. I need to set default schema in persistence.xml. I got some refence and added properties for default schema which is not working. It is probably some syntax issue or some more mapping\configurations which I am unaware.

Please let me know if any pointers to resolve this issue.

<properties>
    <property name="openjpa.RuntimeUnenhancedClasses" value="supported" />
    <property name="openjpa.jdbc.Schema" value="XY01" />
    <property name="hibernate.default_schema" value="XY01" />
</properties>
1

There are 1 best solutions below

1
On

Try to set the property in your persistence.xml file, as follows:

    <properties>
        <property name="hibernate.default_schema" value="myschema"/>
    </properties>