Hibernate id方法:投影对象标识符
id 方法用于指明投影对象标识符。
语法:
返回值:IdentifierProjection 类的对象。IdentifierProjection 类为 Projection 类的子类。
语法:
id()
返回值:IdentifierProjection 类的对象。IdentifierProjection 类为 Projection 类的子类。
示例
查询数据表中的全部用户 ID,关键代码如下:Criteria criteria = session.createCriteria(UserForm.class); //获取Criteria对象 criteria.setProjection(Projections.id()); //设置投影查询列 list = criteria.list(); //获取查询结果集 Iterator it = list.iterator(); //获取查询结果集迭代器 while(it.hasNext()){ //循环遍历查询迭代器 System.out.println("用户ID:"+it.next()); }
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算