subclass « Batch « JPA Q&A





2. Queries on subclass and batch-size    forum.hibernate.org

Hi, I have some classes with the following declaration: Code: public class Company implements Serializable { private Long id; private String name; private Long type; } public class Advertiser extends Company { } public class Order { private Long id; private Advertiser advertiser; } I have ...

3. joined-subclass does not allow jdbc batching to happen    forum.hibernate.org

Our persistence component receives objects over jms and we have to save them to database. The object structure is pretty much a combination of inheritence and containment. We are inserting records with batch size of 100. When we enable order_inserts, we get a good batching for entitites that are in containment. e.g. object containing other objects in lists or collections. However, ...