스프링 AOP에서의 용어

AOP란 관점지향 이라는 뜻으로   간단하게 말하면 어떤작업을 하기전에 해당 데이터를 미리 처리해주고 해당 작업을 끝내고 후에 데이터를 또 처리를 해줘야 할 때 쓰는 기능이다. 혹은 더 쉽게 설명하자면 쇼핑몰에 접속자 숫자를 카운터 하는 기능을 생각하면되겠다. Joinpoint : 클래스의 인스턴스 생성 시점, 메소드 호출 시점 및 예외 발생 시점 과 같이 더 읽기

spring(스프링) servlet.PageNotFound

우선 뜬 오류를 말씀드리면 난 분명히 servlet.xml에 /ㅁㅁㅁ/ㅁㅁㅁ.do=메소드명 이렇게 매핑을 잘 해놨다.. 다른건 잘되는데 유독 한 메소드만 되지 않았따.. 해당메소드는  public ModelAndView processIdCheck(HttpServletRequest request,Account account){  int flag=0;  account = JoinIdCheck(request);  if(account==null){   flag=1;  }else{   flag=-1;  }    request.setAttribute(“id”, request.getParameter(“id”));  request.setAttribute(“flag”, flag);    return new ModelAndView(); } 이렇게 정이되었었따. 콘솔로 출력할땐 No request handling method with name ‘test’ in class [com.account.controller.AccountController]2012-01-08 21:43:50,447 – Null ModelAndView 더 읽기