반응형
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 |
Tags
- avds
- picker
- PYTHON
- 개발
- jest
- 센토스
- node
- 맥
- VirtualBox
- MAC
- androidstudio
- vsCode
- 리눅스
- react
- TensorFlow
- webpack
- 네트워크
- ReactNative
- centos
- MachineLearning
- linux
- qunit
- IOS
- build
- unittest
- localserver
- Android
- Chrome
- xcode
Archives
- Today
- Total
로메오의 블로그
[Spring boot] 예외처리 - GlobalExceptionHandler - ControllerAdvice 본문
Backend/Spring
[Spring boot] 예외처리 - GlobalExceptionHandler - ControllerAdvice
romeoh 2019. 10. 15. 16:27반응형
Spring Boot / Oracle / Mybatis 차례
AuthenticationInterceptor.java
package com.gaeyou.firstproject.interceptor;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
import com.gaeyou.firstproject.exception.UnauthorizedException;
import com.gaeyou.firstproject.model.PersonModel;
@Component
public class AuthenticationInterceptor extends HandlerInterceptorAdapter {
Logger log = LoggerFactory.getLogger(AuthenticationInterceptor.class);
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
// log.info("preHandle");
HttpSession httpSession = request.getSession();
PersonModel person = (PersonModel) httpSession.getAttribute("user");
if (person == null) {
log.info("로그아웃 상태");
throw new UnauthorizedException("로그인 해주세요.");
}
log.info("로그인 되어 있음");
httpSession.setMaxInactiveInterval(30*60);
return true;
}
@Override
public void postHandle (HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
// log.info("postHandle");
super.postHandle(request, response, handler, modelAndView);
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
// log.info("afterCompletion");
super.afterCompletion(request, response, handler, ex);
}
}
GlobalExceptionHandler.java
package com.gaeyou.firstproject.controller;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import com.gaeyou.firstproject.exception.UnauthorizedException;
@ControllerAdvice
@RestController
public class GlobalExceptionHandler {
@ResponseStatus(HttpStatus.UNAUTHORIZED)
@ExceptionHandler(value = UnauthorizedException.class)
public String handleBaseException(UnauthorizedException e) {
return e.getMessage();
}
}
UnauthorizedException.java
package com.gaeyou.firstproject.exception;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
public class UnauthorizedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public UnauthorizedException(String message) {
super(message);
}
}
반응형
'Backend > Spring' 카테고리의 다른 글
[Spring Boot] 파일 업로드 처리 - ajax file upload (0) | 2019.12.11 |
---|---|
[Spring Boot] myBatis Procedure / function 호출 (0) | 2019.12.04 |
[Spring boot] HttpSession 세션 처리 - Interceptor (0) | 2019.10.15 |
[Spring boot] mybatis SQL 로그 찍기 - log4jdbc (0) | 2019.10.12 |
[Spring Boot] 프로젝트 구조 정리하기 (0) | 2019.09.21 |
Comments