【hibernate多表连接 查询的解决方案】

大家在用hibernate的时候总会遇到多表连接的查询,遇到这种问题 总是各种纠结。

  方案1:建立视图 ,事先在数据库里面建立视图。然后建立这个视图的实体类,指定一个主键。然后建立这个视图的查询。

  方案2:给实体类加临时属性HQL查询补充。

  上代码:

  实体类:

  @Entity

  @Table(name = "FLOW_RU_INFO")

  public class FlowRuInfo implements java.io.Serializable {

  // Fields

  private String id;

  private String deptid;

  private String processinstanceid;

  private String content;

  private String creator;

  private Date createtime;

  private String flowtype;

  private String flowcode;

  private String formid;

  private String state;

  private String currentuserid;

  private String pflowtype;

  private String formNo;

  //临时属性

  private String task;

  private String lastAudiUser;

  private String nextUser;

  private String userName;

  private String deptName;

  // Constructors

  /** default constructor */

  public FlowRuInfo() {

  }

  public FlowRuInfo(String id, String deptid, String processinstanceid,

  String content, String creator, Date createtime, String flowtype,

  String flowcode, String formid, String state, String currentuserid,

  String pflowtype, String formNo, String task, String lastAudiUser,

  String nextUser, String userName, String deptName) {

  super();

  this.id = id;

  this.deptid = deptid;

  this.processinstanceid = processinstanceid;

  this.content = content;

  this.creator = creator;

  this.createtime = createtime;

  this.flowtype = flowtype;

  this.flowcode = flowcode;

  this.formid = formid;

  this.state = state;

  this.currentuserid = currentuserid;

  this.pflowtype = pflowtype;

  this.formNo = formNo;

  this.task = task;

  this.lastAudiUser = lastAudiUser;

  this.nextUser = nextUser;

  this.userName = userName;

  this.deptName = deptName;

  }

  // Property accessors

  @GenericGenerator(name = "generator", strategy = "uuid.hex")

  @Id

  @GeneratedValue(generator = "generator")

  @Column(name = "ID", unique = true, nullable = false, length = 32)

  public String getId() {

  return this.id;

  }

  public void setId(String id) {

  this.id = id;

  }

  @Column(name = "DEPTID", length = 32)

  public String getDeptid() {

  return this.deptid;

  }

  public void setDeptid(String deptid) {

  this.deptid = deptid;

  }

  @Column(name = "PROCESSINSTANCEID", length = 100)

  public String getProcessinstanceid() {

  return this.processinstanceid;

  }

  public void setProcessinstanceid(String processinstanceid) {

  this.processinstanceid = processinstanceid;

  }

  @Column(name = "CONTENT", length = 800)

  public String getContent() {

  return this.content;

  }

转载于:https://www.cnblogs.com/mfxp/p/3346739.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值