일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rest api
- Spring Security
- 스프링 시큐리티와 앵귤러 js
- api 문서화
- 예외처리
- api documentation
- 스프링 부트
- AUthorization
- swagger-ui
- Exception Handling
- controlleradvice
- spring
- spring security and angularjs
- spring framwork
- 스웨거
- spring session
- 스프링부트
- spring boot
- 스프링
- Spring Framework
- 스프링 세션
- spring security oauth2
- Authentication
- 앵귤러JS
- 레디스
- angular
- 앵귤러
- 스프링 시큐리티
- oauth2
- angularjs
- Today
- Total
목록controlleradvice (2)
스프링부트는 사랑입니다
스프링부트 : REST어플리케이션에서 예외처리하기(원문소스: http://www.ekiras.com/2016/02/how-to-do-exception-handling-in-springboot-rest-application.html) 기억할 점스프링 부트 어플리케이션에서 예외처리하는 방법은 3가지다: 전역 처리 Global Level using - @ControllerAdvice컨트롤러단에서 처리 Controller Level using - @ExceptionHandler 메소드단위 처리 Method Level using - try/catch REST 어플리케이션에서 예외처리하기 예외처리를 테스트하기위에 3가지 예외를 만들것이다: 모든 커스텀 예외의 부모가 될 BaseException.Base Except..
Global Exception Handling for Spring-Boot Application Using @ControllerAdvice @ControllerAdvice public class GlobalExceptionHandling { protected Logger logger; public GlobalExceptionHandling() { logger = LoggerFactory.getLogger(getClass()); } @ResponseBody public ResponseEntity handleUnauthenticationException(Exception e) { return errorResponse(e, HttpStatus.BAD_REQUEST); } @ExceptionHandler({Da..