JPA的配置文件persistence.xml参数详解

JPA的配置文件persistence.xml参数详解JPA的配置文件     JPA规范要求在类路径的MET

JPA的配置文件 
———————————————————————————————————————————————————————— 
   JPA规范要求在类路径的META-INF目录下放置persistence.xml, 文件的名称是固定的,配置模板如下: 

Xml代码 
复制代码
  1. <?xml version=”1.0″?>  
  2.   
  3. <persistence xmlns=”http://java.sun.com/xml/ns/persistence” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”  
  4. xsi:schemaLocation=”http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd” version=”1.0″>  
  5.   
  6. <persistence-unit name=”itcast” transaction-type=”RESOURCE_LOCAL”>  
  7.   
  8.    <properties>  
  9.     <property name=”hibernate.dialect” value=”org.hibernate.dialect.MySQL5Dialect” />  
  10.     <property name=”hibernate.connection.driver_class” value=”org.gjt.mm.mysqlDriver” />  
  11.     <property name=”hibernate.connection.username” value=”root” />  
  12.     <property name=”hibernate.connection.password” value=”123456″ />  
  13.     <property name=”hibernate.connection.url” value=”jdbc.mysql://localhost:3306/itcast?useUnicode=true&amp;characterEncoding=UTF-8″ />  
  14.     <property name=”hibernate.max_fetch_depth” value=”3″ />  
  15.     <property name=”hibernate.show_sql” value=”true” />  
  16.     <property name=”hibernate.hbm2ddl.auto” value=”update”/>  
  17.    </properties>  
  18.   
  19. </persistence-unit>  
  20.   
  21. </persistence>  



百度找的: 

Xml代码 
复制代码
  1. <?xml version=”1.0″ encoding=”UTF-8″?>  
  2.   
  3. <persistence version=”1.0″  
  4. xmlns:persistence=”http://java.sun.com/xml/ns/persistence”  
  5. xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”  
  6. xsi:schemaLocation=”http://java.sun.com/xml/ns/persistence persistence_1_0.xsd “>  
  7.   
  8. <!–    
  9.      Name属性用于定义持久化单元的名字 (name必选,空值也合法);   
  10.      transaction-type 指定事务类型(可选)    
  11. –>  
  12. <persistence-unit name=”unitName” transaction-type=”JTA”>  
  13.   
  14.    <!– 描述信息.(可选) –>  
  15.    <description> </description>  
  16.   
  17.    <!– javax.persistence.PersistenceProvider接口的一个实现类(可选) –>  
  18.    <provider>   </provider>  
  19.   
  20.    <!– Jta-data-source和 non-jta-data-source用于分别指定持久化提供商使用的JTA和/或non-JTA数据源的全局JNDI名称(可选) –>  
  21.    <jta-data-source>java:/MySqlDS</jta-data-source>  
  22.    <non-jta-data-source> </non-jta-data-source>  
  23.   
  24.    <!– 声明orm.xml所在位置.(可选) –>  
  25.    <mapping-file>product.xml</mapping-file>  
  26.   
  27.    <!– 以包含persistence.xml的jar文件为基准的相对路径,添加额外的jar文件.(可选) –>  
  28.    <jar-file>../lib/model.jar</jar-file>  
  29.   
  30.    <!– 显式列出实体类,在Java SE 环境中应该显式列出.(可选) –>  
  31.    <class>com.domain.User</class>  
  32.    <class>com.domain.Product</class>  
  33.   
  34.    <!– 声明是否扫描jar文件中标注了@Enity类加入到上下文.若不扫描,则如下:(可选) –>  
  35.    <exclude-unlisted-classes/>  
  36.   
  37.    <!–   厂商专有属性(可选)   –>  
  38.    <properties>  
  39.     <!– hibernate.hbm2ddl.auto= create-drop / create / update –>  
  40.     <property name=”hibernate.hbm2ddl.auto” value=”update” />  
  41.     <property name=”hibernate.show_sql” value=”true” />  
  42.    </properties>  
  43.   
  44. </persistence-unit>  
  45.   
  46. </persistence>  



通常在企业开发中,有两种做法: 

  • 1.先建表,后再根据表来编写配置文件和实体bean。使用这种方案的开发人员受到了传统数据库建模的影响。
  • 2.先编写配置文件和实体bean,然后再生成表,使用这种方案的开发人员采用的是领域建模思想,这种思想相对前一种思想更加OOP


   建议使用第二种(领域建模思想),从软件开发来想,这种思想比第一种思想更加面向对象。 领域建模思想也是目前比较新的一门建模思想,第一种是传统的建模思想,已经有10来年的发展历程了,而领域建模思想是近几年才兴起的,这种思想更加的面向对象 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36558.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注