Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.5k views
in Technique[技术] by (71.8m points)

mongodb - "Failed to instantiate java.util.List using constructor NO_CONSTRUCTOR with arguments ",

"Failed to instantiate java.util.List using constructor NO_CONSTRUCTOR with arguments ",

while fetching data from mongo .. what could be possible reason for this


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I was having the same issue, It was the aggregation when unwind happened,Dont create the List of Object in Data object,

My previous class

Account{
        String _id;
          List<Transaction> trasactionList
       }

Corrected class

Account{
          String _id;
          Transaction trasactionList
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...