У меня есть REST API, у которого есть кто-то, теперь у меня есть диапазон чисел (40000 - 99999), который я должен заполнить на своем конце и сохранить его в БД, я не буду получать его в теле запрос. Однако я все еще должен сохранять это число последовательно
, например: 40001, 40002, 40003 и т. Д. c в Postgres, и, поскольку это не поле @Id
, я не могу найти способ сохранить это в БД, есть ли способ сделать это с Java, JPA?
CREATE SEQUENCE public.certificate
INCREMENT 1
START 40000
MINVALUE 40000
MAXVALUE 99999999
CACHE 1;
create table CertificateNumber (c_number integer default nextval(‘certificate’));
@Generated(value = GenerationTime.INSERT)
@Column(name = "c_number", insertable = false,updatable = false)
Integer certificateNumber;
Resolved [org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [certificate_number]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement]
2020-03-06 16:33:13.167 INFO 864 --- [nio-8080-exec-2] i.StatisticalLoggingSessionEventListener : Session Metrics {
714213 nanoseconds spent acquiring 1 JDBC connections;
0 nanoseconds spent releasing 0 JDBC connections;
3037131 nanoseconds spent preparing 1 JDBC statements;
18543560 nanoseconds spent executing 1 JDBC statements;
0 nanoseconds spent executing 0 JDBC batches;
0 nanoseconds spent performing 0 L2C puts;
0 nanoseconds spent performing 0 L2C hits;
0 nanoseconds spent performing 0 L2C misses;
67929213 nanoseconds spent executing 1 flushes (flushing a total of 1 entities and 0 collections);
0 nanoseconds spent executing 0 partial-flushes (flushing a total of 0 entities and 0 collections)
}
В ответ API то, что я получаю, также упоминается ниже.
{
"apierror": {
"status": "INTERNAL_SERVER_ERROR",
"timestamp": "06-03-2020 04:33:13",
"message": "Unexpected error",
"debugMessage": "could not execute statement; SQL [n/a]; constraint [certificate_number]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement",
"subErrors": null
}
}