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 더 읽기

Spring Application [applicationContext.xml] 오류

javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider [org.apache.crimson.jaxp.DocumentBuilderFactoryImpl@131f71a] does not support XML Schema. Are you running on Java 1.4 or below with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support.   이런 당황스런 오류를 발견 하게 되는 경우가 있는데 이것은 자바 1.4의 XML 더 읽기