欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Data JPA 一对多时,进入无限循环的问题

程序员文章站 2022-03-23 23:17:03
...

Spring Data JPA 一对多时,进入无限循环的问题

Spring Data JPA 中的实体类在处理映射关系,例如一对多的关系时,打印本类时会打印对方类,然后打印对方类又会调用本类,就出现相互调用,进入无限循环的情况。

错误信息:

Servlet.service() for servlet [springDispatcherServlet] in context with path [/Shop] threw exception [Request processing failed; nested exception is org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: Infinite recursion (*Error) (through reference chain: com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]->com.web.module.index.model.entity.Account["user"]->com.web.module.index.model.entity.User["accounts"]->org.hibernate.collection.internal.PersistentSet[0]- ......

解决方法:

  • 破坏某一方的 toString()方法即可,最好是破坏多的一方的 toString()方法。
  • 在多的一方对应的实体类属性上加上 @JsonIgnore,进而就可以忽略该字段,跳出循环。但会造成的后果是,输出的结果会缺少该字段的信息,结果就会取不到该字段的相关数据。
  • 可以用 alibaba 旗下的高性能 JSON 框架:FastJSON ,该开源框架速度快,无论序列化和反序列化,都是当之无愧的,并且功能强大,支持普通JDK类包括任意Java Bean Class、Collection、Map、Date、enum,用 FastJSON 可以完美解决互相调用的问题。
相关标签: SpringBoot 学习