【Hibernate学习笔记-5】@Formula注解的使用



ORM映射关系:注解方式


   
   
  1. package org.crazyit.app.domain;
  2. import javax.persistence.*;
  3. import org.hibernate.annotations.Formula;
  4. @Entity(name="news_inf")
  5. public class News
  6. {
  7. // 消息类的标识属性
  8. @Id
  9. @GeneratedValue(strategy=GenerationType.IDENTITY)
  10. private Integer id;
  11. // 消息标题
  12. private String title;
  13. // 消息内容
  14. private String content;
  15. // 消息全部内容,由系统根据公式生成
  16. @Formula("(select concat(nt.title,nt.content)"
  17. + "from news_inf nt where nt.id= id)")
  18. private String fullContent;
  19. // id的setter和getter方法
  20. public void setId(Integer id)
  21. {
  22. this.id = id;
  23. }
  24. public Integer getId()
  25. {
  26. return this.id;
  27. }
  28. // title的setter和getter方法
  29. public void setTitle(String title)
  30. {
  31. this.title = title;
  32. }
  33. public String getTitle()
  34. {
  35. return this.title;
  36. }
  37. // content的setter和getter方法
  38. public void setContent(String content)
  39. {
  40. this.content = content;
  41. }
  42. public String getContent()
  43. {
  44. return this.content;
  45. }
  46. // fullContent的setter和getter方法
  47. public void setFullContent(String fullContent)
  48. {
  49. this.fullContent = fullContent;
  50. }
  51. public String getFullContent()
  52. {
  53. return this.fullContent;
  54. }
  55. }


主函数










转载于:https://my.oschina.net/ssslinppp/blog/637965

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值