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
- pointcut
- http
- JPQL
- 인프런
- java
- Proxy
- kotlin
- spring
- JDBC
- Greedy
- QueryDSL
- Servlet
- 스프링 핵심 원리
- springdatajpa
- Exception
- 백준
- Spring Boot
- AOP
- 그리디
- Android
- jpa
- 스프링 핵심 기능
- 알고리즘
- 자바
- SpringBoot
- 스프링
- db
- 김영한
- transaction
- Thymeleaf
Archives
- Today
- Total
목록validator (1)
개발자되기 프로젝트
Validator 분리 1
1. Validator 현재 Controller가 너무 많은 역할을 가지고 있다. 검증 부분을 따로 분리하자 Spring은 검증을 체계적으로 제공하기 위해 Validator.interface 제공 public interface Validator { boolean supports(Class clazz); void validate(Object target, Errors errors); } supports() {} : 해당 검증기를 지원하는 여부 확인(뒤에서 설명) validate(Object target, Errors errors) : 검증 대상 객체와 BindingResult 2. ItemValidator supports() 넘어온 타입이 검증하기 위한 타입인지 판단. 구현시 return에 isAssign..
인프런/[인프런] 스프링 MVC 2
2021. 9. 24. 23:17