How can I manually define the database path for an EclipseLink JTA DB
?
<persistence>
<persistence-unit name="myapp" transaction-type="JTA">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/myapp</jta-data-source>
<properties>
<property name="eclipselink.ddl-generation" value="drop-and-create-tables" />
</properties>
</persistence-unit>
</persistence>
I'd like to use Squirrel Database tool to inspect the DB, therefore would like to specify the path...
Or is a JTA not ment to have a certain path, but just managed by the container in the background?