`
longyunyinxue
  • 浏览: 6160 次
  • 性别: Icon_minigender_1
  • 来自: 西安
最近访客 更多访客>>
社区版块
存档分类
最新评论

JPA用Hibernate实现环境

 
阅读更多
1,下载hibernate3.3.2
hibernate-distribution-3.3.2.GA-dist.zip
hibernate-entitymanager-3.4.0.GA.zip,
hibernate-annotations-3.4.0.GA.rar(这里有hibernate注解包和针对jpa实现的包)。

2,解压文件hibernate-distribution-3.3.2.GA-dist.zip3,
提取hibernate实现jpa所需jar包:
   --------------------------- hibernate核心包,8个
  1)hibernate-distribution-3.3.2.GA/hibernate3.jar
  2)hibernate-distribution-3.3.2.GA/lib/bytecode/cglib/cglib2.2.jar
  3)hibernate-distribution-3.3.2.GA/lib/required/*.jar,6个
   --------------------------- hibernate注解包,3个
  4)hibernate-annotations-3.4.0.GA/hibernate-annotations.jar
  5)hibernate-annotations-3.4.0.GA/ejb3-persistence.jar
  6)hibernate-annotations-3.4.0.GA/hibernate-commons-annotations.jar
   -------------------------- hibernate针对jpa实现的包,3个
   7)hibernate-entitymanager-3.4.0.GA/hibernate-entitymanager.jar
   8)hibernate-entitymanager-3.4.0.GA/lib/test/log4j.jar
   9)hibernate-entitymanager-3.4.0.GA/lib/test/slf4j-log4j12.jar

3,jpa配置文件src/META-INF/persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
             version="2.0">
   <persistence-unit name="zqm" transaction-type="RESOURCE_LOCAL">
      <properties>
         <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
         <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"></property>
         <property name="hibernate.connection.username" value="root"></property>
         <property name="hibernate.connection.password" value="root"></property>
         <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/zqm?useUnicode=true&amp;characterEncoding=UTF-8"></property>
         <property name="hibernate.hbm2ddl.auto" value="update"/>
      </properties>
   </persistence-unit>
</persistence>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics