我使用 Jackson 作为 Json 解析器,但出现错误:
No suitable constructor found for type ~ can not instantiate from JSON object
所以我尝试添加
@NoArgsConstructor
,但现在我得到了这个:constructor AccountItem in class AccountItem cannot be applied to given types
这是我的课:
@Getter
@Builder
public class AccountItem {
/**
* Accounti dentifier
*/
private Long accountId;
/**
* Account name
*/
private String accountName;
/**
* Account priority
*/
private int accountPriority;
}
可能是什么原因?
最佳答案
将 @AllArgsConstructor
和 @NoArgsConstructor
注释添加到您的类中
关于java - 不能在类上使用 lombok @NoArgsConstructor,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51608041/