20 lines
1009 B
XML
20 lines
1009 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">com.mysql.jdbc.Driver</property>
|
|
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
|
|
<property name="hibernate.connection.username">root</property>
|
|
<property name="hibernate.connection.password">iamtheking</property>
|
|
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
|
|
<property name="show_sql">true</property>
|
|
<property name="hbm2ddl.auto">validate</property>
|
|
<property name="hibernate.globally_quoted_identifiers">true</property>
|
|
|
|
<mapping class="com.baeldung.hibernate.fetching.model.UserEager" />
|
|
<mapping class="com.baeldung.hibernate.fetching.model.OrderDetailEager" />
|
|
</session-factory>
|
|
</hibernate-configuration> |