hibernate.cfg.xml 1.03 KB
<?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="hbm2ddl.auto">update</property>

        <mapping class="com.utbm.lo53.repository.AccessPoint"/>
        <mapping class="com.utbm.lo53.repository.Location"/>
        <mapping class="com.utbm.lo53.repository.Mape"/>
        <mapping class="com.utbm.lo53.repository.RssiRecord"/>
        <mapping class="com.utbm.lo53.repository.TempRssi"/>
    </session-factory>
</hibernate-configuration>