
META-INF.persistence.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adaptrex-sandbox-core Show documentation
Show all versions of adaptrex-sandbox-core Show documentation
Utilities For Sandbox Webapps
The newest version!
<?xml version="1.0" encoding="UTF-8" ?> <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0"> <persistence-unit name="default"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <class>com.adaptrex.sandbox.entities.jpa.Theater</class> <class>com.adaptrex.sandbox.entities.jpa.Movie</class> <class>com.adaptrex.sandbox.entities.jpa.Director</class> <class>com.adaptrex.sandbox.entities.jpa.DataType</class> <properties> <property name="javax.persistence.jdbc.driver" value="org.apache.derby.jdbc.EmbeddedDriver" /> <property name="javax.persistence.jdbc.url" value="jdbc:derby:memory:derbyDB" /> </properties> </persistence-unit> </persistence>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy