1. Lazy collection batch-size value and actual query forum.hibernate.orgI have faced pretty doubtful Hibernate behaviour when initializing batches of lazy collections with preconfigured batch-size. Having the following mapping: Code: |
2. Collection, @Batch(size=3), fetch=LAZY and @Fetch(SELECT) forum.hibernate.org |
3. lazy loading collection batch-size forum.hibernate.orgHi all; i have a problem with lazy load in batch of collections. I have the following mapping: |
4. Batch reading of collection with lazy OneToOne relation forum.hibernate.org @OneToMany(mappedBy = "partner", cascade = { CascadeType.MERGE, CascadeType.PERSIST }, fetch = FetchType.LAZY) @BatchSize(size = 100) @IndexColumn(name = "id") @JoinColumn(name = "partner_id", referencedColumnName = "id") public Set |