使用MyEclipse进行hibernate的基本配置实现一对多

一 创建一个Java项目hibernate-one2many
 
二 添加Hibernate的Jar包
Hibernate的Jar包可从官网下载
添加完后的效果


 
 
三 添加Mysql驱动Jar包
mysql-connector-java-5.1.30-bin.jar
 
四 创建一个hibernate.cfg.xml,并且编辑
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
                "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.username">root</property>
            <property name="hibernate.connection.password">root</property>
            <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
            <property name="hibernate.connection.url">jdbc:mysql://127.0.0.1:3306/imooc?useUnicode=true&amp;characterEncoding=UTF-8</property>
            <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <property name="show_sql">true</property>
            <property name="format_sql">true</property>
            <property name="hbm2ddl.auto">update</property>
    </session-factory>
</hibernate-configuration>
 
 
 

猜你喜欢

转载自cakin24.iteye.com/blog/2399233