
META-INF.persistence.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0"> <!-- We need to enumerate each persistent class first in the persistence.xml See: http://issues.apache.org/jira/browse/OPENJPA-78 --> <persistence-unit name="mapping" transaction-type="RESOURCE_LOCAL"> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider> <class>mapping.BuildSchemaPC</class> <class>mapping.BuildUTF8SchemaPC</class> </persistence-unit> <persistence-unit name="none" transaction-type="RESOURCE_LOCAL"> <mapping-file>reversemapping/orm.xml</mapping-file> <class>hellojpa.Message</class> <class>relations.Deity</class> </persistence-unit> <!-- A persistence unit is a set of listed persistent entities as well the configuration of an EntityManagerFactory. We configure each example in a separate persistence-unit. --> <persistence-unit name="hellojpa" transaction-type="RESOURCE_LOCAL"> <!-- The default provider can be OpenJPA, or some other product. This element is optional if OpenJPA is the only JPA provider in the current classloading environment, but can be specified in cases where there are multiple JPA implementations available. --> <!-- <provider> org.apache.openjpa.persistence.PersistenceProviderImpl </provider> --> <!-- We must enumerate each entity in the persistence unit --> <class>hellojpa.Message</class> <properties> <!-- We can configure the default OpenJPA properties here. They happen to be commented out here since the provided examples all specify the values via System properties. --> <!-- <property name="openjpa.ConnectionURL" value="jdbc:derby:openjpa-database;create=true"/> <property name="openjpa.ConnectionDriverName" value="org.apache.derby.jdbc.EmbeddedDriver"/> <property name="openjpa.ConnectionUserName" value="user"/> <property name="openjpa.ConnectionPassword" value="secret"/> --> </properties> </persistence-unit> <!-- persistence unit for the "relations" example --> <persistence-unit name="relations" transaction-type="RESOURCE_LOCAL"> <class>relations.Deity</class> </persistence-unit> <!-- persistence unit for the "reversemapping" example --> <persistence-unit name="reversemapping" transaction-type="RESOURCE_LOCAL"> <mapping-file>reversemapping/orm.xml</mapping-file> </persistence-unit> <persistence-unit name="embeddables" transaction-type="RESOURCE_LOCAL"> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider> <class>embeddables.Address</class> <class>embeddables.ContactInfo</class> <class>embeddables.Coordinates</class> <class>embeddables.Phone</class> <class>embeddables.User</class> </persistence-unit> </persistence>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy