3 回答

TA貢獻(xiàn)1825條經(jīng)驗(yàn) 獲得超4個(gè)贊
您可以使用JsonAnySetter JsonAnyGetter注釋。后面可以使用Map
實(shí)例。如果您總是one-key-object
可以Collections.singletonMap
在其他情況下使用HashMap
或其他實(shí)現(xiàn)中使用。下面的示例顯示了您可以輕松地使用這種方法并根據(jù)key
需要?jiǎng)?chuàng)建任意數(shù)量的隨機(jī) -s:
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.Collections;
import java.util.Map;
import java.util.Objects;
public class JsonApp {
public static void main(String[] args) throws Exception {
DynamicJsonsFactory factory = new DynamicJsonsFactory();
ObjectMapper mapper = new ObjectMapper();
System.out.println(mapper.writeValueAsString(factory.createUser("Vika")));
System.out.println(mapper.writeValueAsString(factory.createPhone("123-456-78-9")));
System.out.println(mapper.writeValueAsString(factory.any("val", "VAL!")));
}
}
class Value {
private Map<String, String> values;
@JsonAnySetter
public void put(String key, String value) {
values = Collections.singletonMap(key, value);
}
@JsonAnyGetter
public Map<String, String> getValues() {
return values;
}
@Override
public String toString() {
return values.toString();
}
}
class DynamicJsonsFactory {
public Value createUser(String name) {
return any("name", name);
}
public Value createPhone(String number) {
return any("phone", number);
}
public Value any(String key, String value) {
Value v = new Value();
v.put(Objects.requireNonNull(key), Objects.requireNonNull(value));
return v;
}
}
上面的代碼打印:
{"name":"Vika"}
{"phone":"123-456-78-9"}
{"val":"VAL!"}

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超9個(gè)贊
您可以將所有可能的名稱作為變量,并對它們進(jìn)行注釋,以便在為 null 時(shí)忽略它們。這樣,您只能在 JSON 中獲取具有值的
然后更改您的設(shè)置器以輸入映射到您想要的鍵的變量。
class Value {
@JsonProperty("val")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String val;
@JsonProperty("new_key")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String newKey;
@JsonProperty("any_random_string")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String anyRandomString;
public void setVal(String s) {
if(/* condition1 */)
this.val = s;
else if (/* condition2 */) {
this.newKey = s;
} else if (/* condition3 */) {
this.anyRandomString = s;
}
}
}

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊
好問題@Prasad,這個(gè)答案與 JAVA 或 SPRING BOOT 無關(guān),我只是提出這個(gè)答案,因?yàn)槲宜阉鬟^使用 node 來做到這一點(diǎn),并希望這能以某種方式幫助某人。在 JAVASCRIPT 中,我們可以為 JSON 對象添加動(dòng)態(tài)屬性名稱,如下所示
var dogs = {};
var dogName = 'rocky';
dogs[dogName] = {
age: 2,
otherSomething: 'something'
};
dogName = 'lexy';
dogs[dogName] = {
age: 3,
otherSomething: 'something'
};
console.log(dogs);
但是當(dāng)我們需要?jiǎng)討B(tài)更改名稱時(shí),我們必須
得到那個(gè)屬性
并創(chuàng)建另一個(gè)具有相同內(nèi)容和新名稱的屬性
并從 JSON 中刪除舊屬性
將新屬性分配給 JSON
除此方法外,還有另一種動(dòng)態(tài)更改 JSON 名稱的方法,在此先感謝
添加回答
舉報(bào)