次のコードを使用して、POJOの1つにミックスインを作成しようとしています。
interface CustomerStatsIgnoreMixIn {
@JsonIgnoreProperties({"ref"});
}
public class CustomerStatsJob extends Job {
private void updateCustomer(Customer customer) {
ObjectMapper mapper = new ObjectMapper();
mapper.getSerializationConfig().addMixInAnnotations(Customer.class,
CustomerStatsIgnoreMixIn.class);
}
}
Eclipseで次のエラーが発生します@JsonIgnoreProperties({"ref"});
この行に複数のマーカー-構文エラー、「enum Identifier」を挿入してEnumHeaderNameを完成させます-構文エラー、「EnumBody」を挿入してEnumDeclarationを完成させます
ばかげていると思いますが、問題は何か考えはありますか?