How can I get last inserted id using Hibernate(如何使用 Hibernate 获取最后插入的 id)
问题描述
我想在 Hibernate 中获取最后插入的值的 id.
搜索后:
Long lastId = ((Long) session.createSQLQuery("SELECT LAST_INSERT_ID()").uniqueResult()).longValue();但是下面的代码给了我这个错误:
<块引用>java.lang.ClassCastException: java.math.BigInteger 无法转换为 java.lang.Long
请分享你的想法!
解决方案
Long lastId = ((BigInteger) session.createSQLQuery("SELECT LAST_INSERT_ID()").uniqueResult()).longValue();别忘了导入:
<块引用>导入 java.math.BigInteger;
错误很明显.它正在返回 BigInteger 而不是 long
您必须将其分配给 大整数.并从中获取 longValue().p>
I want to fetch the last inserted value's id in Hibernate.
After search:
Long lastId = ((Long) session.createSQLQuery("SELECT LAST_INSERT_ID()").uniqueResult()).longValue();
But the following code gives me this error:
java.lang.ClassCastException: java.math.BigInteger cannot be cast to java.lang.Long
Please share your thoughts!
Solution
Long lastId = ((BigInteger) session.createSQLQuery("SELECT LAST_INSERT_ID()").uniqueResult()).longValue();
Don't forget to import:
import java.math.BigInteger;
Error is pretty clear. It's returning BigInteger and not long
You have to assign it to a BigInteger. And get longValue() from it.
这篇关于如何使用 Hibernate 获取最后插入的 id的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Hibernate 获取最后插入的 id
基础教程推荐
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
