반응형
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
- 스프링
- JPA예제
- nestjs
- 카프카
- Flutter
- 플러터 공부
- 스프링부트
- nestjs스터디
- Kafka
- 알고리즘공부
- K8S
- 코테공부
- querydsl
- nestjs공부
- 프로그래머스
- DDD
- 기술면접공부
- JPA 공부
- 스프링 공부
- 기술공부
- 자료구조공부
- 자바공부
- Axon framework
- 스프링공부
- JPA공부
- 코테준비
- 스프링부트공부
- JPA스터디
- 플러터 개발
- JPA
Archives
- Today
- Total
목록@Vaild (1)
DevBoi
[Spring] 스프링 밸리데이션 동작과정
머리속에 들어있는 내용들을 정리한다. 1. 밸리데이션 관련 의존성 주입. implementation 'org.springframework.boot:spring-boot-starter-validation' 2. 간단한 테스트 @RestController @RequiredArgsConstructor public class MemberController { private final MemberMapper memberMapper; @RequestMapping("/member") public String mapperTest(@RequestBody @Valid MemberDto memberDto){ return "success!"; } } @Getter @Setter @AllArgsConstructor public..
Develop/[Spring]
2023. 7. 31. 00:22