hibernate学习笔记01--在eclipse环境下搭建hibernate框架

1. 下载并解压 hibernate-distribution-3.3.2.GA.zip 和 slf4j-1.5.8.zip 

2. 在 hibernate-distribution-3.3.2.GA 文件夹中找到:

    hibernate3.jar 

3. 在 hibernate-distribution-3.3.2.GA/lib/required 文件夹中找到 hibernate 运行必要的 jar 包 : 

    antlr-2.7.6.jar  

    commons-collections-3.1.jar

    dom4j-1.6.1.jar

    javassist-3.9.0.GA.jar

    jta-1.1.jar

    slf4j-api-1.5.8.jar

4. 在 slf4j-1.5.8 文件夹下找到 :

    slf4j-nop-1.5.8.jar

5. 在 eclipse 中新建 Dynamic Web Project 工程,名为 hibernateHelloWorld 如下图:

hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第1张图片

    5.1 建立好的工程结构图如下:

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第2张图片

6. 将以上8个 jar 包放入 hibernateHelloWorld/WebContent/WEB-INF/lib 文件夹下,如下图:

hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第3张图片

7. 选择 Windows - Preferences - java - Build Path - User Libraries 如下图

hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第4张图片

    7.1 New 随便起个名字叫 “hibernate” 如下图:

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第5张图片

    7.2 OK

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第6张图片

    7.3 为我们自定义的 "hibernate" 添加 jar 包。

         Add JARs..  并找到 hibernateHelloWorld/WebContent/WEB-INF/lib 将刚才放入lib中的 8 个包选中因为这8个 jar 包是 hibernate 所需的包,所以将它放入一个我们自定义的 Libraries 中,并单击 OK,如下图 :

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第7张图片

8.  为工程添加 hibernate支持的包 步骤如下:

    8.1 右击 hibernateHelloWorld -- Build  Path -- Configure Build Path..

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第8张图片

    8.2 如下图

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第9张图片

    8.3 Add Library...  User Library   ---> Next 

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第10张图片

    8.4 选中 "hibernate" Finish。 

    hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第11张图片

9. 看下我们的工程多了个 hibernate Libraries , 如下图:

hibernate学习笔记01--在eclipse环境下搭建hibernate框架_第12张图片

10. 至此,我们工程所需要的包添加完毕。

你可能感兴趣的:(Hibernate,hibernate环境搭建)