ObjectMapper mapper = new ObjectMapper();
mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
コンストラクターの下で intellij からエラーとコンパイラーの警告が表示されます。コンパイルしようとすると、次のように表示されます。
java: no suitable method found for configure(org.codehaus.jackson.JsonParser.Feature,boolean) method
(actual argument org.codehaus.jackson.JsonParser.Feature cannot be converted to com.fasterxml.jackson.core.JsonGenerator.Feature by method invocation conversion)
このメソッドと、正確にこれらのパラメーターを持つコンストラクターも表示され、IntelliSense で使用できます。
誰もこのナンセンスの理由を思いつくことができますか?
助けてくれてありがとう、私は本当に問題が何であるかを理解できないようです。
-アダム