<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.url">jdbc:mysql://192.168.1.108/test1?autoReconnect=true&useUnicode=true&characterEncoding=gbk
</property>
<property name="hibernate.connection.dirver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">123456</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.show_sql">true</property>
<mapping resource="com/jzq/hibernate/User.hbm.xml"/>
<mapping resource="com/jzq/hibernate/Group.hbm.xml"/>
</session-factory>
</hibernate-configuration>