Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
  5. http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd" version="2.1">
  6.  
  7. <!-- Online Store -->
  8. <persistence-unit name="test">
  9. <class>domain.Persona</class>
  10. <exclude-unlisted-classes/>
  11. <properties>
  12. <property name="datanucleus.ConnectionDriverName" value="com.mysql.jdbc.Driver"/>
  13. <property name="datanucleus.ConnectionURL" value="jdbc:mysql://localhost/test"/>
  14. <property name="datanucleus.ConnectionUserName" value="root"/>
  15. <property name="datanucleus.ConnectionPassword" value="passw0rd"/>
  16. </properties>
  17. </persistence-unit>
  18.  
  19. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement