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 | 31 |
Tags
- Logback
- 스프링 시큐리티
- 구현
- 백트래킹
- 스택
- 완전 탐색
- dp
- Zuul
- 도커
- 이분 매칭
- 주울
- spring cloud
- 비트마스킹
- 구간 트리
- 유레카
- Java
- 게이트웨이
- 플로이드 와샬
- 메모이제이션
- 다익스트라
- BFS
- 이분 탐색
- Gradle
- 서비스 디스커버리
- 달팽이
- Spring Cloud Config
- docker-compose
- spring boot
- 트리
- ZuulFilter
Archives
- Today
- Total
목록JSON 바인딩 (1)
Hello, Freakin world!
[Spring] 컨트롤러 메서드 파리미터 JSON 바인딩 여부 테스트
다음의 컨트롤러 계층의 메서드가 있다고 가정합니다. @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