Jackson - 在没有注释的情况下在运行时修改属性 [英] Jackson - Modify an attribute at runtime without annotation

查看:180
本文介绍了Jackson - 在没有注释的情况下在运行时修改属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个bean:

Let's say I have a bean:

public class Msg {
  private int code;
  private Object data;

   ... Getter/setters...
}

我用这种测试代码将其转换为JSON或XML:

And I convert it into JSON or XML with this kind of test code:

public String convert() {
  Msg msg = new Msg();
  msg.setCode( 42 );
  msg.setData( "Are you suggesting coconuts migrate?" );

  ObjectMapper mapper = new ObjectMapper();
  return mapper.writeValueAsString( msg );
}

输出将是这样的:

{"code":42,"data":"Are you suggesting coconuts migrate?"}

现在假设我想用一些动态名称替换'data'属性:

Now let's say I want to replace the 'data' attribute with some dynamic name:

public String convert(String name) {
  Msg msg = new Msg();
  msg.setCode( 42 );
  msg.setData( "Are you suggesting coconuts migrate?" );

  ObjectMapper mapper = new ObjectMapper();
  // ...DO SOMETHING WITH MAPPER ...
  return mapper.writeValueAsString( msg );
}

如果我调用函数 convert(toto)我很想得到这个输出:

If I call the function convert( "toto") I woukld like to have this output:

{"code":42,"toto":"Are you suggesting coconuts migrate?"}

如果我调用函数 convert(groovy)我希望得到这样的结果:

If I call the function convert( "groovy") I woukld like to have this output:

{"code":42,"groovy":"Are you suggesting coconuts migrate?"}

当然我可以在创建JSON后进行字符串替换,但是如果你有答案的话采用程序化方法,我会接受它。

Of course I could do a String replace after JSON creation, but if you have an answer with a programmatic approach I'll take it.

谢谢

推荐答案

您可以使用 PropertyNamingStrategy 类来覆盖类属性。请参阅此类的简单实现:

You can use PropertyNamingStrategy class to override class property. See simple implementation of this class:

class ReplaceNamingStrategy extends PropertyNamingStrategy {

    private static final long serialVersionUID = 1L;

    private Map<String, String> replaceMap;

    public ReplaceNamingStrategy(Map<String, String> replaceMap) {
        this.replaceMap = replaceMap;
    }

    @Override
    public String nameForGetterMethod(MapperConfig<?> config, AnnotatedMethod method, String defaultName) {
        if (replaceMap.containsKey(defaultName)) {
            return replaceMap.get(defaultName);
        }

        return super.nameForGetterMethod(config, method, defaultName);
    }
}

示例程序可能如下所示:

Example program could look like this:

import java.io.IOException;
import java.util.Collections;
import java.util.Map;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.cfg.MapperConfig;
import com.fasterxml.jackson.databind.introspect.AnnotatedMethod;

public class JacksonProgram {

    public static void main(String[] args) throws IOException {
        Msg msg = new Msg();
        msg.setCode(42);
        msg.setData("Are you suggesting coconuts migrate?");

        System.out.println(convert(msg, "test"));
        System.out.println(convert(msg, "toto"));
        System.out.println(convert(msg, "groovy"));
    }

    public static String convert(Msg msg, String name) throws IOException {
        ObjectMapper mapper = new ObjectMapper();
        mapper.setPropertyNamingStrategy(new ReplaceNamingStrategy(Collections.singletonMap("data", name)));
        return mapper.writeValueAsString(msg);
    }
}

以上程序打印:

{"code":42,"test":"Are you suggesting coconuts migrate?"}
{"code":42,"toto":"Are you suggesting coconuts migrate?"}
{"code":42,"groovy":"Are you suggesting coconuts migrate?"}

这篇关于Jackson - 在没有注释的情况下在运行时修改属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆