package servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import util.PubFunc; import bean.MyJavaBean; publicclass MethodTest extends HttpServlet ...{ /** *//** * Destruction of the servlet. <br> */ publicvoid destroy() ...{ super.destroy(); // Just puts "destroy" string in log // Put your code here } /** *//** * The doGet method of the servlet. <br> * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ publicvoid doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException ...{ doPost(request,response); } /** *//** * The doPost method of the servlet. <br> * * This method is called when a form has its tag value method equals to post. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ publicvoid doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException ...{ PubFunc p=new PubFunc(); MyJavaBean bean=(MyJavaBean) p.setProperties(MyJavaBean.class,request); System.out.println(bean); } /** *//** * Initialization of the servlet. <br> * * @throws ServletException if an error occurs */ publicvoid init() throws ServletException ...{ // Put your code here } }