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
- RequestBody
- Spring
- 디자인 패턴
- 헬스체크
- 파라미터
- @RequestBody
- property
- @RequestParam
- actuator
- 코드워즈
- @Value
- DTO
- yml
- ResponseDto
- Boot
- Request
- 플라이웨이트
- Security
- 반환
- Docker
- 프로퍼티
- response
- RequestParam
- 로그인
- JWT
- redis
- Codewars
- 코딩테스트
- springboot
- enum
Archives
- Today
- Total
목록RequestBody (1)
있을 유, 참 진
[SpringMVC] 업무에서 활용한 @RequestBody 사용법 정리
RequestBody - java 객체에 매핑하는 법 Controller에서 DTO 받을 때 JSON 형태 - Offset 객체 소개 - Offset 객체로 받을 때의 JSON 형태 - List로 받을 때의 JSON 형태 RequestBody 💡@RequestBody는 JSON 형태의 데이터를 Java 객체에 매핑할 때 사용하는 어노테이션. Http 통신 메세지 구성의 status line, headers, body 세 부분으로 중 body 부분의 데이터를 받아올 때 사용 POST http://localhost:8080/api/v1/user Content-Type: application/json { "username" : "이유진", "email" : "yoojinLee.dev@gamil.com" } ...
Spring
2023. 3. 30. 21:51