博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JPA JPQL/持久化查询语言
阅读量:5876 次
发布时间:2019-06-19

本文共 1513 字,大约阅读时间需要 5 分钟。

@NamedQuery(query = "Select e from Employee e where e.eid = :id",    name = "find employee by id")
import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.NamedQuery;import javax.persistence.Table;@Entity@Table@NamedQuery(query = "Select e from Employee e where e.eid = :id",    name = "find employee by id")public class Employee {   @Id   @GeneratedValue(strategy= GenerationType.AUTO)      private int eid;   private String ename;   private double salary;   private String deg;   public Employee(int eid, String ename, double salary, String deg)    {    super( );    this.eid = eid;    this.ename = ename;    this.salary = salary;    this.deg = deg;   }   public Employee( )    {    super();   }      public int getEid( )    {    return eid;   }   public void setEid(int eid)     {    this.eid = eid;   }      public String getEname( )    {    return ename;   }   public void setEname(String ename)    {    this.ename = ename;   }      public double getSalary( )    {    return salary;   }   public void setSalary(double salary)    {    this.salary = salary;   }      public String getDeg( )    {    return deg;   }   public void setDeg(String deg)    {    this.deg = deg;   }   @Override   public String toString() {    return "Employee [eid=" + eid + ", ename=" + ename + ", salary="            + salary + ", deg=" + deg + "]";   }}

实体类之间的关系如下:

@ManyToOne 关系

@OneToMany 关系
@OneToOne 关系
@ManyToMany 关系

转载地址:http://bokix.baihongyu.com/

你可能感兴趣的文章
MySQL查询优化
查看>>
【Redis源码分析】如何在Redis中查找大key
查看>>
关于链接文件的探讨
查看>>
android app启动过程(转)
查看>>
Linux—源码包安装
查看>>
JDK8中ArrayList的工作原理剖析
查看>>
安装gulp及相关插件
查看>>
如何在Linux用chmod来修改所有子目录中的文件属性?
查看>>
Applet
查看>>
高并发环境下,Redisson实现redis分布式锁
查看>>
乌克兰基辅一世遗修道院起火 现场火光照亮夜空
查看>>
[iOS 10 day by day] Day 2:线程竞态检测工具 Thread Sanitizer
查看>>
Centos/Ubuntu下安装nodejs
查看>>
关于浏览器的cookie
查看>>
Hyper-V 2016 系列教程30 机房温度远程监控方案
查看>>
国内先进的智能移动广告聚合平台-KeyMob聚合
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
PHP - 如何打印函数调用树
查看>>
js闭包
查看>>