hibernate.cfg.xml 1.22 KB
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>

        <property name="hibernate.dialect"> org.hibernate.dialect.PostgreSQL82Dialect</property>
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.connection.password"></property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/LO53</property>

        <property name="connection_pool_size">1</property>
        <property name="hbm2ddl.auto">create</property>

        <property name="show_sql">true</property>

        <mapping class="com.lo53_mobile_localization.core.entity.Map"/>
        <mapping class="com.lo53_mobile_localization.core.entity.Location"/>
        <mapping class="com.lo53_mobile_localization.core.entity.AccessPoint"/>
        <mapping class="com.lo53_mobile_localization.core.entity.Rssi"/>
        <mapping class="com.lo53_mobile_localization.core.entity.RssiID"/>


    </session-factory>
</hibernate-configuration>