Created
November 20, 2016 22:24
-
-
Save SergioDiniz/54b7379159e3fba8d37814eba303ec8b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# precisa configura o connection pool e o resource manualmento no eclipse | |
# propriedades obrigatorias: DriverClass (org.postgresql.Driver), URL(jdbc:postgresql://localhost:5432/usuario), User, DatabaseName, ServerName, PortNumber, Password | |
<persistence 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" | |
version="2.1"> | |
<persistence-unit name="jdbc/Usuario" transaction-type="JTA"> | |
<jta-data-source>jdbc/Usuario</jta-data-source> | |
<properties> | |
<property name="javax.persistence.schema-generation.database.action" value="create" /> | |
</properties> | |
</persistence-unit> | |
</persistence> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment