BaseServlet????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BaseServlet????????????相关的知识,希望对你有一定的参考价值。
?????????dex method string jsp ???????????? ????????? index.jsp tools ...
??????Servlet????????????????????????????????????
* ???????????????LoginServlet
* ??????:??????RegistServlet
* ???????????????...
??????????????????Servlet???????????????????????????
* login()
* regist()
* updatePassword()
?????????Servlet?????????BaseServlet
* BaseServlet:
* 1. ?????????????????????????????????
* 2. ????????????????????????????????????
*
* ???????????????????????????
* public String regist(HttpServletRequest request,HttpServletResponse response)
* throws ServletException,IOException{
* }
*
* ??????BaseServlet??????????????????:
*/
public String regist(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("regist()...");//
return "/index.jsp";//???????????????Index.jsp
//return "f:/index.jsp" //f????????????forward,?????????
//return "r:/index.jsp" //r????????????redirect,????????????
//return null;//???????????????????????????
//return ""; //???????????????????????????
//?????????????????????????????????????????????????????????
}
public String login(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("login()...");
return "r:/index.jsp";
}
以上是关于BaseServlet????????????的主要内容,如果未能解决你的问题,请参考以下文章