第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

保存 OneToMany 關(guān)系時(shí)總是獲得無限遞歸

保存 OneToMany 關(guān)系時(shí)總是獲得無限遞歸

慕的地6264312 2023-07-28 15:12:08
我正在使用 spring boot 編寫 OneToMany 關(guān)系,一個(gè)屬性可以有多個(gè) propertySale。這是我的財(cái)產(chǎn)類別:@Data@Getter@Entity@Table(name = "Property")public class Property {    @Id    @GeneratedValue    private Long id;    @OneToMany(mappedBy="property", cascade = CascadeType.ALL, targetEntity = PropertySale.class)    @JsonManagedReference    private Set<PropertySale> propertySales;...這是我的 propertySale 類:@Data@Getter@Entity@Table(name = "PropertySale")public class PropertySale {    @Id    @GeneratedValue    private Long id;    @ManyToOne(fetch = FetchType.LAZY)    @JoinColumn(name = "property_id", referencedColumnName = "id")    @JsonBackReference    private Property property;...我像這樣保存 propertySale:@Override    public ResponseEntity<PropertySale> savePropertySale(PropertySale propertySale) {        Optional<Property> existPropertyOpt = this.propertyRepository.findById(propertySale.getProperty().getId());        if(existPropertyOpt.isPresent()){            Example<PropertySale> propertySaleExample =  Example.of(propertySale);            Optional<PropertySale> existPropSale = this.propertySaleRepository.findOne(propertySaleExample);            if(existPropSale.isPresent()){                throw new PropertySaleAlreadyExistException();            }else{                Property existProperty = existPropertyOpt.get();                propertySale.setProperty(existProperty);                existProperty.addPropertySale(propertySale);                this.propertyRepository.save(existProperty);                return new ResponseEntity<>(propertySale, HttpStatus.CREATED);            }        }else{            throw new PropertyNotFoundException(propertySale.getProperty().getId());        }    }當(dāng)我嘗試保存房產(chǎn)銷售時(shí),有人可以告訴我哪里做錯(cuò)了嗎?非常感謝。
查看完整描述

2 回答

?
婷婷同學(xué)_

TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊

簡(jiǎn)短回答

為 的字段添加@EqualsAndHashCode.Exclude注釋。propertyPropertySale

長答案

發(fā)生這種情況是因?yàn)椋?/p>

  1. Hibernate 使用的默認(rèn)實(shí)現(xiàn)是,它SetHashSet基于其元素的哈希碼來存儲(chǔ)它們,并且...

  2. 由于您使用的是 Lombok 的@Data注釋,因此哈希碼(以及 equals 和 toString)實(shí)現(xiàn)會(huì)考慮所有類字段。這意味著Property.hashCode()調(diào)用,反之亦然,導(dǎo)致每當(dāng)調(diào)用它們中的任何一個(gè)時(shí)都會(huì)出現(xiàn)堆棧溢出錯(cuò)誤(如果您調(diào)用或使用這兩個(gè)類中的任何一個(gè),PropertySale.hashCode()也會(huì)發(fā)生這種情況)。.equals().toString()

為了解決這個(gè)問題,您有一些可用的選項(xiàng):

  • 替換@Data@Getter@Setteron class?Property。由于它不用作 a 內(nèi)的元素Set,因此它可能?不需要覆蓋hashCode/equals,這與PropertySale.

  • 在字段上添加@EqualsAndHashCode.Exclude(and )?,因此不會(huì)調(diào)用。@ToString.ExcludePropertySale.propertyPropertySale.hashCodeProperty.hashCode

  • 編寫您自己的hashCode/equals實(shí)現(xiàn)PropertySale(在這種情況下,Lombok 不會(huì)生成它們)而無需調(diào)用(例如,Property.hashCode您仍然可以使用)。Property.id

獎(jiǎng)金

正如我提到的,可能會(huì)出現(xiàn)同樣的問題,但更正幾乎與/?:?/ 避免/ 自定義實(shí)現(xiàn)toString相同...equalshashCodeToString.Exclude@Data

您還可以編寫單元測(cè)試,以確保StackOverflowError在運(yùn)行應(yīng)用程序時(shí)這些方法都不會(huì)拋出異常。


查看完整回答
反對(duì) 回復(fù) 2023-07-28
?
搖曳的薔薇

TA貢獻(xiàn)1793條經(jīng)驗(yàn) 獲得超6個(gè)贊

快速解決:

更改您的 hashCode 以排除 propertySale。

我在 OneToMany 中遇到了同樣的問題;然后意識(shí)到 HashCode 正在無限循環(huán)。

您只需要更改 hashCode 方法將其排除,即可解決您的問題。


查看完整回答
反對(duì) 回復(fù) 2023-07-28
  • 2 回答
  • 0 關(guān)注
  • 196 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)