免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2356 | 回复: 1
打印 上一主题 下一主题

Hibernate Annotation文档整理(一) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-19 17:25 |只看该作者 |倒序浏览
Hibernate Annotation文档整理(一)






Setting up an annotations project
•HibernateUtil类(Annotation方式)
Java代码
  1. 1.public class HibernateUtil {   
  2. 2.private static final SessionFactory sessionFactory;   
  3. 3.    static {   
  4. 4.        try {   
  5. 5.            sessionFactory = new AnnotationConfiguration()   
  6. 6.                    .configure().buildSessionFactory();   
  7. 7.        } catch (Throwable ex) {   
  8. 8.            // Log exception!   
  9. 9.            throw new ExceptionInInitializerError(ex);   
  10. 10.        }   
  11. 11.    }   
  12. 12.    public static Session getSession()   
  13. 13.            throws HibernateException {   
  14. 14.        return sessionFactory.openSession();   
  15. 15.    }   
  16. 16.}  
  17. public class HibernateUtil {
  18. private static final SessionFactory sessionFactory;
  19.     static {
  20.         try {
  21.             sessionFactory = new AnnotationConfiguration()
  22.                     .configure().buildSessionFactory();
  23.         } catch (Throwable ex) {
  24.             // Log exception!
  25.             throw new ExceptionInInitializerError(ex);
  26.         }
  27.     }
  28.     public static Session getSession()
  29.             throws HibernateException {
  30.         return sessionFactory.openSession();
  31.     }
  32. }
复制代码
•需要添加hibernate.cfg.xml配置文件,内容如:



Xml代码
  1. 1.<!DOCTYPE hibernate-configuration PUBLIC   
  2. 2.    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"   
  3. 3.    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">  
  4. 4.<hibernate-configuration>  
  5. 5.  <session-factory>  
  6. 6.    <mapping package="test.animals"/>  
  7. 7.    <mapping class="test.Flight"/>  
  8. 8.    <mapping class="test.Sky"/>  
  9. 9.    <mapping class="test.Person"/>  
  10. 10.    <mapping class="test.animals.Dog"/>  
  11. 11.  
  12. 12.    <mapping resource="test/animals/orm.xml"/>  
  13. 13.  </session-factory>  
  14. 14.</hibernate-configuration>  
  15. <!DOCTYPE hibernate-configuration PUBLIC
  16.     "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  17.     "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  18. <hibernate-configuration>
  19.   <session-factory>
  20.     <mapping package="test.animals"/>
  21.     <mapping class="test.Flight"/>
  22.     <mapping class="test.Sky"/>
  23.     <mapping class="test.Person"/>
  24.     <mapping class="test.animals.Dog"/>

  25.     <mapping resource="test/animals/orm.xml"/>
  26.   </session-factory>
  27. </hibernate-configuration>  
复制代码
hibernate 特定的属性

Property
描述

hibernate.cache.default_cache_concurrency_strategy
当使用注解@Cacheable @Cache时,用来给的默认org.hibernate.annotations.CacheConcurrencyStrategy设置名称,@Cache(strategy="..") 可以覆盖默认设置。
  
hibernate.id.new_generator_mappings
值为true或者false,这个设置表示是否新建的IdentifierGenerator实现类的生成策略为AUTO、Table和Sequence。默认为false,以保持向后兼容性。  

我们建议所有新项目使用hibernate.id.new_generator_mappings= true,新的生成器是更有效率和更密切的JPA规范语义。然而,他们不向后兼容现有的数据库(如果ID生成一个序列或表)。

Mapping Entities
Marking a POJO as persistent entity




Java代码
  1. 1.@Entity  
  2. 2.public class Flight implements Serializable {   
  3. 3.    Long id;   
  4. 4.  
  5. 5.    @Id  
  6. 6.    public Long getId() { return id; }   
  7. 7.  
  8. 8.    public void setId(Long id) { this.id = id; }   
  9. 9.}   
  10. 10.public class Flight implements Serializable {  
  11. @Entity
  12. public class Flight implements Serializable {
  13.     Long id;

  14.     @Id
  15.     public Long getId() { return id; }

  16.     public void setId(Long id) { this.id = id; }
  17. }
  18. public class Flight implements Serializable {  


  19. Defining the table


  20. @Table元素包含一个schema和catalog属性,如果他们需要被定义。

  21. 你还可以使用@ UniqueConstraint 给表定义唯一约束(建议使用@Column.unique方法。)



  22. Java代码  
  23. 1.@Table(name="tbl_sky",   
  24. 2.    uniqueConstraints = {@UniqueConstraint(columnNames={"month", "day"})}   
  25. 3.)  
  26. @Table(name="tbl_sky",
  27.     uniqueConstraints = {@UniqueConstraint(columnNames={"month", "day"})}
  28. )  


  29. 通过@Version设置乐观锁


  30. Java代码  
  31. 1.@Entity  
  32. 2.public class Flight implements Serializable {   
  33. 3.    ...   
  34. 4.    @Version  
  35. 5.    @Column(name="OPTLOCK")   
  36. 6.    public Integer getVersion() { ... }   
  37. 7.}  
  38. @Entity
  39. public class Flight implements Serializable {
  40.     ...
  41.     @Version
  42.     @Column(name="OPTLOCK")
  43.     public Integer getVersion() { ... }
  44. }  
复制代码
version这个属性会被映射成为乐观锁字段,实体管理器会通过它检测到有冲突的更新。为了防止丢失更新,可以设置最晚提交生效策略(last-commit-wins strategy)。

version字段可以是数字或者时间戳,Hibernate支持自定义的或者适当的实现UserVersionType的类型。

Mapping simple properties
Declaring basic property mappings(声明基本属性映射)
实体中任何一个非静态的、非暂时性属性都认为是持久化字段,除非使用@Transient注解。

属性不加注解相当于加@Basic,@Basic允许声明加载策略(FetchType)。



Java代码
  1. 1.public transient int counter; //transient property   
  2. 2.  
  3. 3.private String firstname; //persistent property   
  4. 4.  
  5. 5.@Transient  
  6. 6.String getLengthInMeter() { ... } //transient property   
  7. 7.  
  8. 8.String getName() {... } // persistent property   
  9. 9.  
  10. 10.@Basic  
  11. 11.int getLength() { ... } // persistent property   
  12. 12.  
  13. 13.@Basic(fetch = FetchType.LAZY)   
  14. 14.String getDetailedComment() { ... } // persistent property   
  15. 15.  
  16. 16.@Temporal(TemporalType.TIME)   
  17. 17.java.util.Date getDepartureTime() { ... } // persistent property   
  18. 18.  
  19. 19.@Enumerated(EnumType.STRING)   
  20. 20.Starred getNote() { ... } //enum persisted as String in database  
  21. public transient int counter; //transient property

  22. private String firstname; //persistent property

  23. @Transient
  24. String getLengthInMeter() { ... } //transient property

  25. String getName() {... } // persistent property

  26. @Basic
  27. int getLength() { ... } // persistent property

  28. @Basic(fetch = FetchType.LAZY)
  29. String getDetailedComment() { ... } // persistent property

  30. @Temporal(TemporalType.TIME)
  31. java.util.Date getDepartureTime() { ... } // persistent property

  32. @Enumerated(EnumType.STRING)
  33. Starred getNote() { ... } //enum persisted as String in database  
复制代码
在普通的Java API中,时间精度是没有定义的。当处理时间数据时,你可能需要在数据库中描述期望的时间精度。

时间数据可以有DATE、TIME、TIMESTAMP的精度,通过@Temporal注解可以微调。

@Lob标识属性应该持久化为Blob或者Clob类型,这决定于属性的类型。
java.sql.Clob、Character[]、char[] 和 String会持久化成Clob。
java.sql.Blob、Byte[]、byte[]和Serializable会被持久化成Blob。



Java代码
  1. 1.@Lob  
  2. 2.public String getFullText() {   
  3. 3.    return fullText;   
  4. 4.}   
  5. 5.  
  6. 6.@Lob  
  7. 7.public byte[] getFullCode() {   
  8. 8.    return fullCode;   
  9. 9.}  
复制代码

论坛徽章:
0
2 [报告]
发表于 2012-03-19 17:25 |只看该作者
谢谢分享
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP