Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- plugin
- Mac
- 줄바꿈 문자
- 네트워크
- Windows 10
- profile
- GIT
- resource
- bash
- 단축키
- grep
- maVen
- find
- web.xml
- context
- Windows
- IntelliJ
- Eclipse
- Quartz
- import
- JavaScript
- port
- vscode
- tomcat
- ssh
- VirtualBox
- Source
- xargs
- lsof
- netsh
Archives
- Today
- Total
develog
[spring boot] response json 포멧팅 본문
@JsonProperty("json_프로퍼티_이름")
- dto 에는 jsonServiceNm 으로 저장하지만
- json 에는 serviceNm 으로 내보낸다
@Data
public class ResponseDto {
@JsonProperty("serviceCdNm")
private String joinServiceCdNm;
}
Comments