hibernate.cfg.xml
997 Bytes
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.driver_class">org.postgresql.Driver</property>
<property name="connection.url">jdbc:postgresql://localhost:5432/LO53_BDD</property>
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="connection.username">lo53_user</property>
<property name="connection.password">lo53</property>
<property name="connection.pool_size">1</property>
<property name="hibernate.hbm2ddl.auto">create</property>
<mapping class="repository.AccessPoint"/>
<mapping class="repository.Location"/>
<mapping class="repository.Map"/>
<mapping class="repository.RssiRecord"/>
<mapping class="repository.TempRssi"/>
</session-factory>
</hibernate-configuration>