Interceptor
-
struts2 :: 사용자 인터셉터 예제IT/Java & JSP & FW 2012. 4. 30. 17:36
사용자 인터셉터 만들기 기본형태 public abstract class AbstractInterceptor implements Interceptor { public void init(){} public void destroy(){} public abstract String intercept(ActionInvocation invocation) throws Exception; } 간단한 사용자 인터셉터 만들어 보기. 0. 예제 개요 - add.jsp에서 두수를 입력하고 submit한다. - SumAction이 이를 받아 두수의 합을 리턴하면 result.jsp에서 두 수 및 그 합을 출력한다. SumAction이 실행되기 전에 Action의 수행시간을 계산하기 위한 mytimer, prepare(Model빈..