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
- spring boot
- Logback
- Spring Cloud Config
- Zuul
- 완전 탐색
- BFS
- 스택
- 서비스 디스커버리
- 구간 트리
- 다익스트라
- 플로이드 와샬
- 이분 탐색
- 도커
- spring cloud
- ZuulFilter
- 게이트웨이
- docker-compose
- 스프링 시큐리티
- 백트래킹
- 달팽이
- 트리
- 이분 매칭
- Gradle
- 비트마스킹
- 구현
- 주울
- 유레카
- 메모이제이션
- dp
- Java
Archives
- Today
- Total
목록JSON 바인딩 (1)
Hello, Freakin world!

다음의 컨트롤러 계층의 메서드가 있다고 가정합니다. @ToString @NoArgsConstructor @Getter public class ItemCreateDto { @NotNull private String name; @NotNull private Integer price; @NotNull private Integer stockQuantity; private List details; } @PostMapping("/items") public String create(@RequestBody ItemCreateDto createDto) { System.out.println(createDto); return "created"; } 웹 POST 요청 바디의 JSON객체가 ItemCreateDto에 제대로 바..
Spring boot
2020. 8. 10. 12:29