1. Error using dynamic-component with JPA forum.hibernate.orgHi, I'm having a problem using a dynamic-component mapping. If I use hibernate directly, everything works fine. If I used through EntityManager, I get an exception when loading the configuration: Exception in thread "main" java.lang.IllegalArgumentException: Cannot determine java-type from given member [null] Any idea??? I can upload the full sample if needed. thanks in advance Tagut pd: here is the full ... |
2. ERROR: Could not access the Component..? forum.hibernate.orgHi, it got this problem... When i try to run this line: HibernateService hibernateService = (HibernateService) lookup(HibernateService.ROLE); it gives me this error: junit.framework.AssertionFailedError: org.apache.avalon.framework.component.ComponentException: Could not access the Component (key [net.sf.hibernate.avalon.HibernateService]) at junit.framework.Assert.fail(Assert.java:47) at com.webcellcorp.affection.HibernateCreateUsersTest.setUp I have included import net.sf.hibernate.avalon.HibernateService so it is not that. The mapping files look like this: |
3. error when try to insert composite object with 2 components forum.hibernate.orgRegular Joined: Thu Apr 14, 2005 2:15 pm Posts: 66 When I try to insert a composite object with 2 or more objects, I have the error described. Hibernate version: 3.0 Mapping documents: Code: |
4. error mapping components of components forum.hibernate.orgAuthor Message ronaldorezende Post subject: error mapping components of components Posted: Wed Aug 17, 2005 3:04 pm Regular Joined: Thu Apr 14, 2005 2:15 pm Posts: 66 Is it possible to mapping this class model?, or it is impossible mapping a collection of a component that has another collection of components? The mapping is below the image. Code: ... |
5. Many-to-Many with Component (unmapped class error) forum.hibernate.orgNewbie Joined: Mon Nov 21, 2005 1:48 pm Posts: 17 Hibernate version: 3.0.5 Mapping documents: Code: |
6. Error in embeding two same components forum.hibernate.orgCode: public class Order implements java.io.Serializable { @Embedded @AttributeOverrides( { @AttributeOverride(name = "address", column = @Column(name = "shipaddress")), @AttributeOverride(name = "city", column = @Column(name = "shipcity")), @AttributeOverride(name = ... |