Friday, 17 June 2011

Hibernate configuration file to connect Mysql

<?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">

<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

    <session-factory>
       
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://192.168.1.101:3306/atrdev</property>
        <property name="hibernate.connection.username">atrdev</property>
        <property name="connection.password">centris</property>
        <property name="connection.pool_size">10</property>
        <property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
        <property name="show_sql">true</property>
        <property name="hibernate.hbm2ddl.auto">update</property>
       
        <mapping resource="com/khaleelsoftsol/atr/dao/sessionfactory/AtrEmployeeInfo.hbm.xml"/>
   
    </session-factory>


</hibernate-configuration>

No comments:

Post a Comment