https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
@JsonProperty는 변수를 원하는 key값으로 직렬화시 활용할 수 있는 annotation임
public class Sample{
@JsonProperty("customer_name")
private String customerName;
}
해당 도메인 객체를 ObjectMapper클래스를 이용하여 출력하면,
customerName이 아닌, customer_name으로 키 값이 출력되는 것을 확인할 수 있음.
728x90
반응형
'Spring' 카테고리의 다른 글
ClassPathResource (0) | 2022.02.14 |
---|---|
thymeleaf에서 스프링 환경변수 사용하기 (0) | 2022.01.28 |
Spring - @Autowired와 빈 객체 탐색 순서 (0) | 2021.05.29 |
스프링- 스프링 Bean, 생성과정과 스코프 (1) | 2021.05.18 |
스프링 - IOC와 DI (2) | 2021.05.13 |