20 lines
970 B
XML
20 lines
970 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!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.connection.driver_class">org.h2.Driver</property>
|
|
<property name="hibernate.connection.url">jdbc:h2:mem:testdb</property>
|
|
<property name="hibernate.connection.username">sa</property>
|
|
<property name="hibernate.connection.password"></property>
|
|
<property name="hibernate.dialect">org.hibernate.dialect.H2Dialect</property>
|
|
<property name="hibernate.hbm2ddl.auto">update</property>
|
|
<property name="show_sql">false</property>
|
|
<property name="hibernate.globally_quoted_identifiers">true</property>
|
|
|
|
<mapping class="com.baeldung.hibernate.fetching.model.UserEager" />
|
|
<mapping class="com.baeldung.hibernate.fetching.model.OrderDetail" />
|
|
</session-factory>
|
|
</hibernate-configuration> |