What casuses Spring Boot Fail-safe cleanup (collections) to occur

前端 未结 5 2374
梦谈多话
梦谈多话 2021-02-20 14:35

I have a Java Spring Boot application with the following entities related to the below exception

SProduct

@Entity
@Table(
        name =         


        
5条回答
  •  后悔当初
    2021-02-20 14:39

    I Had This Problem When use Set, but When I do Change to List it's Solved You Should use

      private List fbts;
    

提交回复
热议问题