查询文章都类似,只是类型没有对应上,根据实际情况处理。
前情
- 使用postgresql数据库
- 数据库ID类型
int4
- 实体类代码
private Long id;
异常
### Cause: org.postgresql.util.PSQLException: ERROR: integer out of range
; ERROR: integer out of range; nested exception is org.postgresql.util.PSQLException: ERROR: integer out of range
结果
数据库类型int4与代码里面的Long类型不一致,需要数据库类型int8才能够和实体类Long对应上