您好,登錄后才能下訂單哦!
本篇內容主要講解“JPA @ManyToMany報錯怎么解決”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“JPA @ManyToMany報錯怎么解決”吧!
在使用 SpringBoot + JPA 的@ManyToMany 遇到了如下報錯
java.lang.StackOverflowError: null
2021-02-07 10:59:59.490 ERROR 100440 --- [io-20012-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]:
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed;
nested exception is org.springframework.http.converter.HttpMessageNotWritableException:
Could not write JSON: Infinite recursion (StackOverflowError);
nested exception is com.fasterxml.jackson.databind.JsonMappingException:
Infinite recursion (StackOverflowError) (through reference chain:
com.xxx.entity.boem.EquipmentManage["dataPublishes"]->org.hibernate.collection.internal.PersistentSet[0]
->com.xxx.entity.bods.DataPublish["equipmentManages"]->org.hibernate.collection.internal.PersistentBag[0]
->com.xxx.entity.boem.EquipmentManage["dataPublishes"]->org.hibernate.collection.internal.PersistentSet[0]
->com.xxx.entity.bods.DataPublish["equipmentManages"]->org.hibernate.collection.internal.PersistentBag[0]
->com.xxx.entity.boem.EquipmentManage["dataPublishes"]->org.hibernate.collection.internal.PersistentSet[0]
->.......
..........
注意:
使用@ManyToMany時, 對應的Entity不可使用lombok 的@Data 注解。使用@Setter 、@Getter注解。主要原因是要自己覆寫hash() equals(),toString() 方法。這樣添加和刪除的時候不會出現異常。否則出現循環的引用,不能刪除或stackOver;
不能刪除和添加成功,出現循環的主要問題在 toString()方法。此方法只能包含基本的元素,不要包含相應的@ManyToMany 的對象 。兩個類都是。這樣才會ok.
@Setter @Getter @Entity public class User { @Id @GenericGenerator(name="jpauuid",strategy = "org.hibernate.id.UUIDGenerator") @GeneratedValue(generator = "jpauuid") @Column(length = 32,nullable = false) private String id; @Column(length = 30) private String username; @ManyToMany(cascade = CascadeType.REFRESH,mappedBy = "users") private Set<Role> roles; @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; User user = (User) o; return id.equals(user.id) && username.equals(user.username) && roles.equals(user.roles); } @Override public int hashCode() { return Objects.hash(id, username, roles); } @Override public String toString() { return "User{" + "id='" + id + '\'' + ", username='" + username + '\'' + ", roles=" + roles + '}'; } }
@Setter @Getter @Entity public class Role { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Integer id; @Column(length = 30) private String name; @ManyToMany(cascade = CascadeType.REFRESH) @JoinTable(name = "user_role",joinColumns = @JoinColumn(name = "role_id"),inverseJoinColumns = @JoinColumn(name="user_id")) private Set<User> users; }
項目里有一處根據Id,批量刪除一些歷史數據的代碼(xxxRepository.deleteInBatch(list);),發現傳入list過大時,出現棧溢出(StackOverFlowError) 。
list切分成多份,循環批量刪除。
下面是簡單的了解一下執行流程。
deleteInBatch(Iterable<T> entities) /** 點進源碼 看看。 org.springframework.data.jpa.repository.support.SimpleJpaRepository#deleteInBatch */ @Transactional public void deleteInBatch(Iterable<T> entities) { Assert.notNull(entities, "The given Iterable of entities not be null!"); if (!entities.iterator().hasNext()) { return; } // 繼續跟蹤 applyAndBind(getQueryString(DELETE_ALL_QUERY_STRING, entityInformation.getEntityName()), entities, em) .executeUpdate(); } /** org.springframework.data.jpa.repository.query.QueryUtils#applyAndBind */ public static <T> Query applyAndBind(String queryString, Iterable<T> entities, EntityManager entityManager) { // ... 省略一些code // 最后會形成 delete from xx表 x(表別名) where x.id =? or x.id=?... 一條sql語句 String alias = detectAlias(queryString); StringBuilder builder = new StringBuilder(queryString); builder.append(" where"); int i = 0; while (iterator.hasNext()) { iterator.next(); builder.append(String.format(" %s = ?%d", alias, ++i)); if (iterator.hasNext()) { builder.append(" or"); } } Query query = entityManager.createQuery(builder.toString()); iterator = entities.iterator(); i = 0; while (iterator.hasNext()) { query.setParameter(++i, iterator.next()); } }
結合日志記錄的錯誤信息,進入到org.hibernate.hql.internal.antlr.HqlSqlBaseWalker#logicalExpr 方法
下面貼一下調用棧
org.hibernate.hql.internal.antlr.HqlSqlBaseWalker#deleteStatement 方法中 whereClause()調用到了logicalExpr 方法。
由下圖可知,該方法在①處遞歸調用自身,會不斷的創建棧幀,當超出棧深度或者超出棧的大小后,會爆出 棧溢出。
至于① 處怎么跳出繼續執行后面的代碼,還沒研究,有知道的小伙伴請指教,不正確的地方也請指正。
到此,相信大家對“JPA @ManyToMany報錯怎么解決”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。