]> git.mxchange.org Git - pizzaservice-ejb.git/blob - src/conf/persistence.xml
Turned master (EE)+ejb project into separate master (triangle) and EJB project
[pizzaservice-ejb.git] / src / conf / persistence.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
3   <persistence-unit name="PizzaService-ejbPU" transaction-type="JTA">
4     <jta-data-source>jdbc/shop</jta-data-source>
5     <class>org.mxchange.jcontacts.contact.UserContact</class>
6     <class>org.mxchange.jcountry.data.CountryData</class>
7     <class>org.mxchange.jphone.phonenumbers.cellphone.CellphoneNumber</class>
8     <class>org.mxchange.jphone.phonenumbers.fax.FaxNumber</class>
9     <class>org.mxchange.jphone.phonenumbers.landline.LandLineNumber</class>
10     <class>org.mxchange.jphone.phonenumbers.smsprovider.CellphoneProvider</class>
11     <class>org.mxchange.jshopcore.model.basket.items.BasketItem</class>
12     <class>org.mxchange.jshopcore.model.category.ProductCategory</class>
13     <class>org.mxchange.jshopcore.model.customer.ShopCustomer</class>
14     <class>org.mxchange.jshopcore.model.order.ShopOrder</class>
15     <class>org.mxchange.jshopcore.model.order.items.OrderItem</class>
16     <class>org.mxchange.jshopcore.model.product.GenericProduct</class>
17     <class>org.mxchange.jusercore.model.email_address.EmailAddressChange</class>
18     <class>org.mxchange.jusercore.model.user.LoginUser</class>
19     <exclude-unlisted-classes>false</exclude-unlisted-classes>
20     <properties>
21       <property name="javax.persistence.schema-generation.database.action" value="create"/>
22     </properties>
23   </persistence-unit>
24 </persistence>