Я пытаюсь преобразовать строку json в объект, используя Джексона в остальных WS, используя Джерси на tomcat 8.5.
объект создается во время выполнения с использованием javassist (с информацией, поступающей из БД) и добавлением«другая» карта, аннотированная @ JsonAnySetter / Getter.
Когда я вызываю маппер Джексона с buildClass («MyClass»), он выдает com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException
.
Когда MyClass уже загружен вclasspath при запуске без использования buildClass, отображение работает нормально.
Я полагаю, что есть проблема с Loader, но я понятия не имею, как решить эту проблему.
Пожалуйста, просмотрите и оставьте отзыв.
public class ClassFactory{
public Class<?> buildClass(String className){
ClassPool pool = ClassPool.getDefault();
Loader cl = new Loader(pool);
CtClass cc = pool.makeClass(className);
ConstPool constPool = pool.get(className).getClassFile().getConstPool();
/* */
/* field creation loop */
/* */
// other map
CtField field = CtField.make("private java.util.Map other = new java.util.HashMap();", cc);
cc.addField(field);
// add other map getter
CtClass[] paramsAny = {pool.get(String.class.getName())};
cc.addMethod(CtNewMethod.make(pool.get(Object.class.getName()), "any", paramsAny,null, "{ return this.other.get($1);}", cc));
CtMethod m = cc.getDeclaredMethod("any", paramsAny);
// add @JsonAnyGetter to other map getter
AnnotationsAttribute annotationAttribute = new AnnotationsAttribute(constPool, AnnotationsAttribute.visibleTag );
annotationAttribute.addAnnotation(new Annotation(JsonAnyGetter.class.getName(), constPool));
m.getMethodInfo().addAttribute(annotationAttribute);
// add other map setter
CtClass[] paramsSet = {pool.get(String.class.getName()), pool.get(Object.class.getName())};
cc.addMethod(CtNewMethod.make(pool.get("void"), "set", paramsSet,null, "{this.other.put($1,$2);}", cc));
m = cc.getDeclaredMethod("set", paramsSet);
// add @JsonAnySetter to other map setter
annotationAttribute = new AnnotationsAttribute(constPool, AnnotationsAttribute.visibleTag );
annotationAttribute.addAnnotation(new Annotation(JsonAnySetter.class.getName(), constPool));
m.getMethodInfo().addAttribute(annotationAttribute);
//build class
return cc.toClass(cl,null);
}
}
это часть сгенерированного класса
public class MyClass{
/* more fields */
private Map other = new HashMap();
@JsonAnyGetter
public Object any(String var1) {
return this.other.get(var1);
}
@JsonAnySetter
public void set(String var1, Object var2) {
this.other.put(var1, var2);
}
}
картограф Джексона
ObjectReader reader = new ObjectMapper().reader();
Class<?> myClass = new ClassFactory().buildClass("MyClass");
Object myClassInstance =reader.forType(myClass).readValue(jsonString);
некоторые JSON
{
/* more fields */
"info1":"val1",
"info2" :"val2"
}