-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpersistence.xml
More file actions
17 lines (15 loc) · 900 Bytes
/
persistence.xml
File metadata and controls
17 lines (15 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<persistence 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"
version="2.0">
<persistence-unit name="rpsdb" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.connection.url" value="jdbc:derby://localhost:1527/rpsdb"/>
<property name="hibernate.connection.driver_class" value="org.apache.derby.jdbc.ClientDriver"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.DerbyTenSevenDialect"/>
<property name="hibernate.connection.username" value="guest"/>
<property name="hibernate.connection.password" value="password"/>
</properties>
</persistence-unit>
</persistence>