Step 01 - build.gradle에 필요한 모듈 추가 스프링 부트 2.3 버전 이상부터는 validation이 스프링 부트 스타터에 포함되어 있지 않고 별도의 모듈로 분리되어서 추가를 해주어야 합니다. // validation implementation 'org.springframework.boot:spring-boot-starter-validation' Step 02 - DTO class 작성 클라이언트의 요청 데이터가 DTO 클래스로 캡슐화하여 서버로 전달 Controller Service 계층간 데이터 전달 @Data public class NoticeAddDto { @Range(min = 0, max = 1) private int status; @NotBlank private String ..
@ControllerAdvice란? @ControllerAdvice란 모든 Controller에서 발생할 수 있는 예외를 잡아 처리해주는 어노테이션입니다. @ExceptionHandler란? @ExceptionHandler란 @Controller, @RestController 어노테이션이 적용된 Bean 내에서 발생하는 예외를 잡아서 하나의 메서드에서 처리를 해주는 기능입니다. Contoller, RestController에서만 적용이 가능합니다.(@Service 같은 빈에서는 적용이 안됩니다.) 예제 해당 예제는 DB에 Insert시 query문에서 오타가 있어서 DB에 저장이 안되고 nested exception is java.sql.SQLSyntaxErrorException 와 같은 예외를 발생시킵..
- Total
- Today
- Yesterday
- 레이어드 아키텍처란
- 람다 표현식
- space based architecture
- spring boot excel download oom
- spring boot 엑셀 다운로드
- redis sorted set으로 대기열 구현
- spring boot redisson destributed lock
- spring boot redisson sorted set
- spring boot redis 대기열 구현
- transactional outbox pattern
- 서비스 기반 아키텍처
- JDK Dynamic Proxy와 CGLIB의 차이
- transactional outbox pattern spring boot
- spring boot poi excel download
- spring boot redisson 분산락 구현
- redis sorted set
- polling publisher spring boot
- @ControllerAdvice
- spring boot excel download paging
- redis 대기열 구현
- java ThreadLocal
- pipe and filter architecture
- 트랜잭셔널 아웃박스 패턴 스프링 부트 예제
- microkernel architecture
- 공간 기반 아키텍처
- 자바 백엔드 개발자 추천 도서
- 트랜잭셔널 아웃박스 패턴 스프링부트
- service based architecture
- java userThread와 DaemonThread
- pipeline architecture
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |