javax.el.ELException: Error reading [name] on type [com.news.entity.Topic_$$_javassist_1]异常

javax.el.ELException: Error reading [name] on type [com.news.entity.Topic_$$_javassist_1]异常

异常分析:从message中可以看出,错误是读取异常,属性是name,路径是com.news.entity.Topic,此错误是使用Hibernate时,由于Hibernate还没有去数据库去检索想要得到的数据而抛出的异常(有时也会是多表关联映射配置异常)。

  Hibernate为了降低系统的内存开销,默认采用延迟加载来加载关联的对象

错误解决:查看Hibernate生成的映射文件Topic.hbm.xml。

javax.el.ELException: Error reading [name] on type [com.news.entity.Topic_$$_javassist_1]异常

此时,异常解决。

:我们在使用Hibernate反转工具生成实体类及映射文件时,还要仔细检查一遍,避免不必要的麻烦。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyzpsw.html