일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- angular2
- 자바
- 페이징
- Validations
- 업캐스팅
- full text indexing
- 25가지 효율적인 sql작성법
- Random
- while
- 야구게임
- 로또
- 전자정부
- 다운캐스팅
- 추상클래스
- 단축키
- 전체
- 자바 야구게임
- IBatis procedure
- 가변인자
- 형변환
- Full text
- 이클립스
- 상속
- Login with OAuth Authentication
- 전체텍스트
- jquery
- 스프링
- 다형성
- 상속예제
- Today
- Total
nalaolla
인터셉터(Interceptor) 사용하기 본문
인터셉터(Interceptor) 사용하기
==================================
servlet-context.xml
==================================
<interceptors>
<interceptor>
<mapping path="/**" />
<beans:bean class="test.com.spring19interceptor.TestInterceptor"></beans:bean>
</interceptor>
</interceptors>
==================================
TestInterceptor.java
==================================
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
public class TestInterceptor extends HandlerInterceptorAdapter {
private static final Logger logger = LoggerFactory
.getLogger(TestInterceptor.class);
// private static final String[] SPATH_LIST = { "/", "/home.do", "/login.do" };
@Override
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception {
String sPath = request.getServletPath();
logger.info("sPath : "+sPath);
return true;
}
}
==================================
Session 분기
==================================
HttpSession session = request.getSession();
String session_id =
(String) session.getAttribute("LOGIN_ID");
if(sPath.compareTo("/select.do")==0){
logger.info("session_id : "+session_id);
if(session_id==null){
response.sendRedirect("login.do");
return false;
}
}
'SPRING' 카테고리의 다른 글
SqlSession + MyBatis + 프로시져 호출하여 우편번호 가져오기 (0) | 2016.03.26 |
---|---|
AOP-Aspect Oriented Programming (0) | 2016.03.25 |
log4j 사용 및 적용방법 (0) | 2016.03.17 |
mybatis사용하기 (0) | 2016.03.16 |
BasicDataSource 적용하기 (0) | 2016.03.14 |