Hi
I am facing a problem with the Hibernate framework.
I have a parent table and associate child table
When I try to insert a record to the Parent it is not inserting the record to the child.It is getting inserted to the parent.
I am not getting any exception also
I am using sesson.save(parent object).
do I need to explicitly do session.save(child object)?
mapping xml for the parent
<hibernate-mapping package="com.ert.nwcs.symbology.dataaccess">
<class name="TbNewsCode" table="TB_NEWS_CODE" schema="NWCS">
<id name="newsCodeId" type="big_decimal">
<column name="NEWS_CODE_ID" precision="22" scale="0" />
<generator class="assigned" />
</id>
<property name="newsCode" type="string">
<column name="NEWS_CODE" length="10" not-null="true" />
</property>
<property name="newsType" type="big_decimal">
<column name="NEWS_TYPE" precision="22" scale="0" not-null="true" />
</property>
<set name="tbNewsCodeChild" inverse="true" >
<key>
<column name="NEWS_CODE_ID" precision="22" scale="0" not-null="true" />
</key>
<one-to-many class="TbNewsCodeChild" />
</set>
</class>
</hibernate-mapping>
mapping xml for child
<hibernate-mapping package="com.ert.nwcs.symbology.dataaccess">
<class name="TbNewsCodeParent" table="TB_NEWS_CODE_CHILD" schema="NWCS">
<composite-id name="id" class="TbNewsCodeChildId">
<key-many-to-one name="tbNewsCode" class="TbNewsCode">
<column name="NEWS_CODE_ID" precision="22" scale="0" />
</key-many-to-one>
<key-property name="childCode" type="string">
<column name="CHILD_CODE" />
</key-property>
</composite-id>
</class>
</hibernate-mapping>
Please help me resolve this problem.
I tried using cascade="all" or cascade ="save-update" option in the
parent mapping xml, but it is giving me some error when it tries to
access the getter method of child
------------------------------------solution----------------------------------------------------------------------------
Hi All,
I was able to solve the problem
my parent object set contained the string attibutes which actually should have contained the child objects.
分享到:
相关推荐
9. **"org.hibernate.PropertyAccessException.txt"**:该文件可能记录了关于Hibernate在尝试访问或修改对象属性时遇到的异常情况,分析其中的错误信息可以帮助定位和解决问题。 10. **"Insert.txt"**:可能包含...
4. **处理异常:** BeanUtils内部处理了可能出现的`PropertyAccessException`,将常见的错误转化为运行时异常,简化了异常处理流程。 5. **类型转换:** 内置了基本类型的转换逻辑,可以自动进行类型转换,如将字符...
在使用Hibernate进行数据库操作时,映射文件是连接对象模型与关系型数据库的关键。这篇文章将深入探讨几个由Hibernate映射导致的常见异常,以及如何解决这些问题。这些异常通常与实体类、XML映射文件或注解配置不...
5. **异常处理:** 库中内置了对可能出现的异常(如属性不存在或类型转换失败)的处理,通过抛出`PropertyAccessException`,为开发者提供了友好的错误提示。 在实际开发中,Apache Commons BeanUtils被广泛应用于...
PropertyAccessException PropertyAccessor PropertyAccessorUtils PropertyBatchUpdateException PropertyComparator PropertyEditorRegistrar PropertyEditorRegistry PropertyEditorRegistrySupport ...
在处理OGNL表达式时,可能会遇到各种异常,如`PropertyAccessException`(访问属性失败)、`NullPointerException`(空指针异常)等。理解这些异常可以帮助定位和解决问题。 9. 性能优化: 为了提高性能,OGNL...
6. **Exception Handling**: BeanUtils库在处理异常时会抛出`PropertyAccessException`,这是专门为处理JavaBean属性访问错误而设计的异常类,包含了详细的错误信息。 7. **Internationalization (i18n)**: 考虑到...
在这个场景中,我们关注的是`org.apache.commons.beanutils.BeanComparator`,这是一个由Apache Commons BeanUtils项目提供的特殊`Comparator`实现,它专门用来对对象的属性进行比较和排序。 `BeanComparator`类...
3. **异常处理**:BeanUtils库会捕获并包装在访问属性过程中抛出的异常,返回一个统一的`PropertyAccessException`,简化了错误处理流程。 4. **国际化支持**:通过`Locale`对象,BeanUtils可以处理不同地区的数据...
6. **异常处理**:BeanUtils在处理异常时,通常会捕获并包装成`PropertyAccessException`,这样可以避免因属性访问失败而中断整个程序。 尽管BeanUtils库在处理Java Bean时提供了极大的便利,但也有一些需要注意的...
BeanUtils在处理过程中如果遇到问题(如找不到属性或类型转换失败),会抛出`PropertyAccessException`,开发者可以通过捕获这个异常来处理错误情况。 5. **空值处理**: 对于null值的处理,BeanUtils也做了优化...
5. **处理异常**:BeanUtils库在处理过程中会捕获并包装可能抛出的异常,如`PropertyAccessException`,使开发者可以统一处理错误,提高代码的健壮性。 6. **国际化支持**:BeanUtils与Apache Commons Locale和...
5. **使用BeanUtils.copyProperties()的自定义转换器**:如果属性类型不匹配,可以实现`org.apache.commons.beanutils.Converter`接口,然后通过`registerConverter()`方法注册,使BeanUtils在遇到这种类型转换时...
在使用BeanUtils时,需要注意可能出现的`PropertyAccessException`,它通常表示在尝试访问或修改属性时发生了错误,可能是由于属性不存在、类型不匹配等原因。正确处理这些异常是保证程序健壮性的重要环节。 8. **...