Skip to content
Snippets Groups Projects
Commit 620fd7f3 authored by Julian Horner's avatar Julian Horner
Browse files

Remove not necessary comments

parent a4859d58
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" <persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_1.xsd"
version="2.0"> version="2.1">
<persistence-unit name="primary" transaction-type="JTA"> <persistence-unit name="primary"
<!-- Use the Hibernate OGM provider: configuration will be transparent --> transaction-type="JTA">
<provider>org.hibernate.ogm.jpa.HibernateOgmPersistence</provider> <provider>org.hibernate.ogm.jpa.HibernateOgmPersistence</provider>
<properties>
<!-- Here you will pick which NoSQL technology to use, and configure it; <class>de.dpunkt.myaktion.model.Account</class>
in this example we start a local in-memory Infinispan node. --> <class>de.dpunkt.myaktion.model.Campaign</class>
<property name="hibernate.ogm.datastore.provider" value="MONGODB"/> <class>de.dpunkt.myaktion.model.Donation</class>
<property name="hibernate.ogm.datastore.host" value="127.0.0.1"/> <class>de.dpunkt.myaktion.model.Organizer</class>
<property name="hibernate.ogm.mongodb.port" value="27017"/> <exclude-unlisted-classes>true</exclude-unlisted-classes>
<property name="hibernate.ogm.datastore.database" value="my-aktion"/>
</properties> <properties>
</persistence-unit> <property name="hibernate.transaction.jta.platform"
value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform" />
<property name="hibernate.ogm.datastore.database"
value="my-aktion" />
<property name="hibernate.ogm.datastore.host"
value="localhost" />
<property name="hibernate.ogm.datastore.provider"
value="MONGODB" />
</properties>
</persistence-unit>
</persistence> </persistence>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment