티스토리 뷰
출처 : https://okky.kr/article/371438
Custom Deserializer 클래스 (999 -> 999.0 과 같은 Number 자동 변환 방지)
package mltm.com.customize.configure;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import com.google.common.base.Function;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
public class HashMapDeserializer implements JsonDeserializer> {
@Override
public HashMap deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext ctx) throws JsonParseException {
JsonObject obj = json.getAsJsonObject();
Entry entry = obj.entrySet().iterator().next();
HashMap resultMap = new HashMap();
resultMap.put(entry.getKey(), ParseObjectFromElement.SINGLETON.apply(entry.getValue()));
return resultMap;
}
public enum ParseObjectFromElement implements Function {
SINGLETON;
public Object apply(JsonElement input) {
Object value = null;
if (input == null || input.isJsonNull()) {
value = null;
} else if (input.isJsonPrimitive()) {
JsonPrimitive primitive = input.getAsJsonPrimitive();
if (primitive.isNumber()) {
value = primitive.getAsInt(); // Number 값은 무조건 integer로 처리
} else if (primitive.isBoolean()) {
value = primitive.getAsBoolean();
} else {
value = primitive.getAsString();
}
} else if (input.isJsonArray()) {
value = Lists.newArrayList(Iterables.transform(input.getAsJsonArray(), this));
} else if (input.isJsonObject()) {
value = Maps. newLinkedHashMap(
Maps.transformValues(JsonObjectAsMap.INSTANCE.apply(input.getAsJsonObject()), this));
}
return value;
}
}
public enum JsonObjectAsMap implements Function> {
INSTANCE;
private final Field members;
JsonObjectAsMap() {
try {
members = JsonObject.class.getDeclaredField("members");
members.setAccessible(true);
} catch (NoSuchFieldException e) {
throw new UnsupportedOperationException("cannot access gson internals", e);
}
}
@SuppressWarnings("unchecked")
@Override
public Map apply(JsonObject in) {
try {
return (Map) members.get(in);
} catch (IllegalArgumentException e) {
throw new UnsupportedOperationException("cannot access gson internals", e);
} catch (IllegalAccessException e) {
throw new UnsupportedOperationException("cannot access gson internals", e);
}
}
}
}
custom Deserializer를 이용하여 gson 객체 생성
Gson gson = new GsonBuilder().registerTypeAdapter(HashMap.class, new HashMapDeserializer()).create();
json convert to tree linked map
Map<String, Object> retMap = gson.fromJson(jsonData, new TypeToken<HashMap<String, Object>>() {}.getType());
결과
위와 같은 xml 데이터를
위처럼 json 형태로 변환한 다음
tree map 형태로 최종 변환 합니다.
출처 : https://okky.kr/article/371438
해당 게시글 원작자이신 okky 오로롱이님 감사합니다.
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 쓰레드의 이용
- map loop
- BEAN
- parretn
- IoC컨테이너
- 쓰레드
- 프로세스
- 어플리에키션 컨텍스트
- 설정정보
- 패턴
- 빈팩토리
- map iterator
- apache tomcat 연동
- map for문
- 쓰레드 사용 이유
- 프로세스의 문제점
- tomcat8.x
- apache2.x
- java map loop
- application
- apllication context
- tomcat8.5
- 디자인패턴
- Page
- 프로세스의 특징
- 빈
- 스프링
- 연동
- map foreach
- 메소드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함