Sample hibernate cfg xml file

Sample hibernate cfg xml file

For reference how to create hibernate.cfg.xml file you could use below sample file where it includes data base properties setting, show sql property and resource mapping file location setting.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.bytecode.use_reflection_optimizer">false</property>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.password">admin</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/javahonk</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.search.autoregister_listeners">false</property>
        
        <property name="show_sql">true</property>
        <mapping resource="com/javahonk/model/Person.hbm.xml" />
    </session-factory>
</hibernate-configuration>

For more information please refer this hibernate tutorial

Leave a Reply

Your email address will not be published. Required fields are marked *