일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- array
- parametric search
- benefits
- health
- 나는솔로
- 영어
- BOJ
- 코딩 테스트
- silver
- Movie
- 리뷰
- Recursive
- 영화
- Netflix
- 추천
- 백준
- Greedy
- 완전탐색
- 넷플릭스
- kakao
- 수능
- BFS
- 카카오
- 해설
- review
- 알고리즘
- Algorithm
- usaco
- 2020
- coding
- Today
- Total
목록spring boot (2)
Young
유효성 검사는 매우 중요한데, 이를 위해 hibernate validator 를 사용하면 기본적인 유효성 검사를 편하고, 깔끔하게 할 수 있다. 이 hibernate validator 를 만들게 된 이유를 보면, 아래와 같이 객체를 전달할 때마다 유효성 검증을 할텐데, 이 때 코드 중복이 너무 많다는 단점을 보완하기 위해서 이것을 만든 것이다. 그래서 아래와 같이 dto 에 각 멤버변수에 대한 제약조건을 모두 명시해 놓으면, 각 층으로 객체를 넘길때마다 유효성 검증하는 코드를 쉽게 작성할 수 있게끔 한다는 목적을 가지고 만들었다. (docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#validator-gettingstarted) ..
heowc.dev/2018/02/10/spring-boot-async/ 허원철의 개발 블로그 Spring Boot - Async heowc.dev stackoverflow.com/questions/43607467/async-method-in-spring-boot Async method in Spring Boot I have a problem with sending email with method annotated as @Async. Firstly, I am not sure if it is possible to work as I want so I need help with explanation. Here is what am doing now: In main stackoverflow.com www.hanum..