我想序列化特定方法的输出(方法的名称不是以get前缀开头)。

class MyClass {
    // private fields with getters & setters

    public String customMethod() {
        return "some specific output";
    }
}

JSON范例
{
    "fields-from-getter-methods": "values",
    "customMethod": "customMethod"
}
customMethod()的输出未序列化为JSON字段。如何在不添加 customMethod() 前缀的情况下实现get 的输出的序列化?

最佳答案

在您的方法中使用JsonProperty批注。

与Jackson2:

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;

public class MyClass {

private String name;

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

@JsonProperty("customMethod")
public String customMethod() {
    return "test";
}

public static void main(String[] args) {

    ObjectMapper objectMapper = new ObjectMapper();

    MyClass test = new MyClass();
    test.setName("myName");

    try {
        System.out.println(objectMapper.writeValueAsString(test));
    } catch (JsonProcessingException e) {
        e.printStackTrace();
    }

}
}

输出:
{"name":"myName","customMethod":"test"}
希望能帮助到你!

10-05 23:29