您的位置:首页 > 其它

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

2013-10-05 16:01 302 查看
大家在用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;

  }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: