| <?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 version="2.0" 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_2_0.xsd"> |
| <persistence-unit transaction-type="JTA" name="CourseSelectPU" > |
| <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider> |
| <jta-data-source>SystemDatasource</jta-data-source> |
| <non-jta-data-source>NoTxDatasource</non-jta-data-source> |
| <class>org.apache.geronimo.javaee6.jpa20.entities.Course</class> |
| <class>org.apache.geronimo.javaee6.jpa20.entities.Student</class> |
| <class>org.apache.geronimo.javaee6.jpa20.entities.BasicInfo</class> |
| <class>org.apache.geronimo.javaee6.jpa20.entities.Address</class> |
| <exclude-unlisted-classes>true</exclude-unlisted-classes> |
| <properties> |
| <property name="openjpa.jdbc.DBDictionary" value="derby"/> |
| <!-- <property name="openjpa.ConnectionURL" value="jdbc:derby://localhost:1527/jpa20demodb;create=true"/> |
| <property name="openjpa.ConnectionDriverName" value="org.apache.derby.jdbc.ClientDriver"/> |
| <property name="openjpa.ConnectionUserName" value="APP"/> |
| <property name="openjpa.ConnectionPassword" value="APP"/> |
| <property name="openjpa.Log" value="DefaultLevel=WARN, Tool=INFO"/> |
| <property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)"/> |
| <property name="openjpa.Sequence" value="table(Table=OPENJPASEQ, Increment=100)"/> --> |
| </properties> |
| </persistence-unit> |
| </persistence> |