Skip to content

Tag: hibernate

Jpa Enum error with Smallint type in postgres

I want to put enum in my entity. But I have an error with validation which JPA wonts smallint set as enum. How I can solve this issue. “Schema-validation: wrong column type encountered in column [status] in table [order]; found [int2 (Types#SMALLINT)], but expecting [int4 (Types#INTEGER)]”[enter i…

Batch fetching into @ElementCollection

I have following entity with its persistent collection After loading 10k rows A entities, I want to load its collection as well And select statement generated quite a lot (~10k). Very poor performance here! Any idea to work with batch select here? Answer I have solved this! IDEA Hibernate will take care of th…