반응형
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 |
Tags
- 스프링 공부
- 프로그래머스
- 자료구조공부
- JPA예제
- 코테준비
- 알고리즘공부
- nestjs
- JPA
- 스프링
- 카프카
- nestjs공부
- 기술공부
- 스프링부트
- nestjs스터디
- 기술면접공부
- JPA 공부
- 스프링부트공부
- K8S
- querydsl
- Axon framework
- 스프링공부
- Flutter
- JPA공부
- Kafka
- 자바공부
- JPA스터디
- 코테공부
- 플러터 개발
- 플러터 공부
- DDD
Archives
- Today
- Total
목록스프링 @Valid (1)
DevBoi
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/ZkZ7A/btsplbKy6Ti/gsENjQCEREbRJu4djjECf0/img.png)
머리속에 들어있는 내용들을 정리한다. 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