Rev 216 | Rev 226 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 216 | Rev 225 | ||
|---|---|---|---|
| Line 4... | Line 4... | ||
| 4 | xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
|
4 | xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
|
| 5 | http://java.sun.com/xml/ns/persistence/persistence_2_1.xsd"
|
5 | http://java.sun.com/xml/ns/persistence/persistence_2_1.xsd"
|
| 6 | version="2.1">
|
6 | version="2.1">
|
| 7 | 7 | ||
| 8 | <persistence-unit name="sisPU" transaction-type="RESOURCE_LOCAL">
|
8 | <persistence-unit name="sisPU" transaction-type="RESOURCE_LOCAL">
|
| 9 | <provider>org.hibernate.ejb.HibernatePersistence</provider> |
- | |
| - | 9 | <!-- <provider>org.hibernate.ejb.HibernatePersistence</provider> -->
|
|
| - | 10 | <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> |
|
| - | 11 | <jta-data-source>java:comp/env/jdbc/sisEC</jta-data-source> |
|
| 10 | 12 | ||
| 11 | <properties>
|
13 | <properties>
|
| 12 | <!-- propriedades do hibernate -->
|
14 | <!-- propriedades do hibernate -->
|
| 13 | <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
|
15 | <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
|
| 14 | <property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
|
16 | <property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
|
| 15 | <property name="hibernate.show_sql" value="true" />
|
17 | <property name="hibernate.show_sql" value="true" />
|
| 16 | <property name="hibernate.format_sql" value="true" />
|
18 | <property name="hibernate.format_sql" value="true" />
|
| 17 | 19 | ||
| 18 | <!-- atualiza o banco, gera as tabelas se for preciso -->
|
20 | <!-- atualiza o banco, gera as tabelas se for preciso -->
|
| 19 | <property name="hibernate.hbm2ddl.auto" value="false" />
|
- | |
| - | 21 | <property name="hibernate.hbm2ddl.auto" value="none" />
|
|
| 20 | </properties>
|
22 | </properties>
|
| 21 | </persistence-unit>
|
23 | </persistence-unit>
|
| - | 24 | ||
| 22 | </persistence>
|
25 | </persistence>
|