본문 바로가기
백엔드/Spring(Boot)

spring responsebody json 필드명 변경하기

by 김어찐 2022. 8. 2.
728x90

memberId -> member_id 로 변경

public class LoginResultDto {
    @JsonProperty("member_id")
    Long memberId;
    String email;
}

 

728x90

'백엔드 > Spring(Boot)' 카테고리의 다른 글

spring 외부 경로 매핑  (0) 2022.08.11
spring static 경로 404  (0) 2022.08.10
springboot 파일업로드  (0) 2022.07.01
springboot h2 인메모리 모드 설정  (0) 2022.06.30
jpa @GeneratedValue  (0) 2022.04.16