khaleel. Powered by Blogger.
Showing posts with label Hibernate.cfg.xml for mysql. Show all posts
Showing posts with label Hibernate.cfg.xml for mysql. Show all posts

Hibernate configuration file to connect Mysql

Friday, 17 June 2011

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

Read more...
Related Posts Plugin for WordPress, Blogger...
Promote Your Blog

About This Blog

This blog is for java lovers

Total Pageviews

About Me

khaleel-bapatla
BAPATLA, ap, India
simple and honest
View my complete profile

  © Blogger template On The Road by Ourblogtemplates.com 2009

Back to TOP