๋ฐ์ํ
json ๋ฐ์ดํฐ๋ฅผ vo๋ก ๋ณํํ ๋ ํด๋น ํด๋์ค์ ์ ์ธ๋์ง ์์ ๋ณ์(ํ๋กํผํฐ)๊ฐ json์ ์์ผ๋ฉด ์๋ฌ๊ฐ ๋ฐ์ํ๋ค.
org.codehaus.jackson.map.exc.UnrecognizedPropertyException
ํด๋น ํ๋กํผํฐ๋ฅผ ๋ฌด์ํ๊ณ ์ ํ๋ ๊ฒฝ์ฐ @JsonIgnoreProperties(ignoreUnknown = true)๋ฅผ ์ ์ธํ๋ฉด ๋๋ค!
@JsonIgnoreProperties(ignoreUnknown = true)
public class TestVo {
private String userName;
private String userId;
}
json ๋ฐ์ดํฐ๊ฐ ์๋์ ๊ฐ์ด ๋ค์ด์๋ ์ด์ ์๋ฌ๊ฐ ๋ฐ์ํ์ง ์๋๋ค.
{"user-name":"name01", "user-id":"id01", "user-email":"email01"}
728x90
๋ฐ์ํ
๋๊ธ