自定义mvc第一课思维导图
自定义mvc解释图
自定义mvc代码运行效果?
框架运行效果?
?
package com.zking.gwq.framework;
import java.io.IOException; import java.util.HashMap; import java.util.Map;
import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** ?* 目标: ?* ?? ?根据自定义mvc框架的原理图 完成 框架的研发 ?* @author T440s ?* 中央控制器 ?*寻找子控制器 ?*/ @WebServlet("*.action") public class DispathServlet extends HttpServlet { ?? ?//存放子控制器的容器 ?? ?private Map<String, ActionSupport> actions = new HashMap<String, ActionSupport>(); ?? ?//初始化子控制器(集合),经过初始化,actions容器内部就有了子控制器 ?? ?//init,service,destroy ?? ?@Override ?? ?public void init() throws ServletException { ?? ??? ?actions.put("/book", new BookAction()); //?? ??? ?actions.put("/order", new BookAction()); //?? ??? ?actions.put("/orderItem", new BookAction()); ?? ?} ?? ? ?? ?@Override ?? ?protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ?? ??? ?doPost(req, resp); ?? ?} ?? ? ?? ?@Override ?? ?protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ?? ??? ?//完成寻找子控制器的过程 ?? ??? ?//浏览器:http://localhost:8080/t266_mvc/book.action?methodName=add ?? ??? ?//目标:bookaction.add(); ?? ??? ?/** ?? ??? ? * 思路: ?? ??? ? * 1.从浏览器URL中获取到“/book”字符串 ?? ??? ? * 2.在子控制器容器中拿到BookAction ?? ??? ? * 3.BookAction.add() ?? ??? ? */ ?? ??? ?String uri = req.getRequestURI(); ?? ??? ?uri.substring(uri.lastIndexOf("/"), uri.lastIndexOf(".")); ?? ??? ?//action=BookAction ?? ??? ?ActionSupport action = actions.get(uri); //?? ??? ?ActionSupport action = actions.get(uri); ?? ??? ?action.execute(req, resp); ?? ?} } ?
?
package com.zking.gwq.Books;
import java.io.IOException; import java.lang.reflect.Method;
import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse;
/** ?* 目标:自定义mvc的工作原理 ?* 1.什么是自定义mvc框架 ?* ?? ? ?关键:自定义mvc 框架 ?* 2.它的运行原理 ?* ?? ??? ?2.1代码演绎过程 ?* ?? ??? ?2.2总结代码运行原理 ?*? ?* 思考: ?* ?? ??? ?什么是mvc ?* Model模型,view视图,controller控制层 ?* mvc的出现原因:各司其职 ?* 一个餐馆:点菜,收银,炒菜,收盘子,洗盘子 ?* 发展壮大:点菜员,收银员,厨师,传菜员,洗碗阿姨... ?*? ?* 不足: ?* Model模型: ?* ?? ??? ?Dao层:(增删改 查) ?* ?? ??? ??? ?1.建立数据库连接 ?* ?? ??? ??? ?2.预定义preparestatement ?* ?? ??? ??? ?3.执行查询 ?* ?? ??? ??? ?4.处理结果集 ?* ?? ??? ?通用分页解决了上面问题 ?* view视图: ?* ?? ??? ??? ?1.重复的html分页条代码 ?* ?? ??? ??? ?2.重复js代码 ?* ?? ??? ??? ?自定义Page标签 ?* controller控制层: ?* ?? ??? ??? ?1.重写了doGet,doPost,并且doGet没有用 ?* ?? ??? ??? ?2.参数的封装代码冗余了 ?* ?? ??? ??? ??? ?req.getParammeter("xxxx"); ?* ?? ??? ??? ?3.对于跳转页面的代码是重复的 ?* ?? ??? ??? ??? ?req.getRequestDispatcher("index.jsp").forward(req,resp); ?* ?? ??? ??? ??? ?resp.sendRedirect("bookList.jsp"); ?*解决方案: ?*?? ??? ?自定义mvc就出现了 ?*?? ??? ?框架:反射+设计模式 案例:通用分页+自定义page标签+自定义mvc的组合就是框架 ?* @author T440s ?* ?*/ /*@WebServlet("/book.action")*/ public class BookServlet extends HttpServlet{ ?? ??? ?@Override ?? ??? ?protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ?? ??? ??? ?doPost(req, resp); ?? ??? ?} ?? ??? ?@Override ?? ??? ?protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ?? ??? ??? ?/** ?? ??? ??? ? * 增删改查缺陷 ?? ??? ??? ? * 1.当需求发生改变,或者新增需求的时候,需要改动下面代码 load ?? ??? ??? ? *? ?? ??? ??? ? * 解决方案 ?? ??? ??? ? * ?? ?前台传递methodName后台,实际就是想要调用当前类对象methodName方法 ?? ??? ??? ? * this.methodName ?? ??? ??? ? */ ?? ??? ??? ?String methodName = req.getParameter("methodName"); ?? ??? ??? ?try { ?? ??? ??? ??? ?//methodName=load ?? ??? ??? ??? ?Method m = this.getClass().getDeclaredMethod(methodName, HttpServletRequest.class,HttpServletResponse.class); ?? ??? ??? ??? ?m.setAccessible(true); ?? ??? ??? ??? ?m.invoke(this, req,resp); ?? ??? ??? ?} catch (Exception e) { ?? ??? ??? ??? ?e.printStackTrace(); ?? ??? ??? ?}? ?? ??? ??? ?/*if("add".equals(methodName)) { ?? ??? ??? ??? ??? ?add(req,resp); ?? ??? ??? ?}else if("edit".equals(methodName)) { ?? ??? ??? ??? ??? ?edit(req,resp); ?? ??? ??? ?}else if("delete".equals(methodName)) { ?? ??? ??? ??? ??? ?delete(req,resp); ?? ??? ??? ?}else if("list".equals(methodName)) { ?? ??? ??? ??? ??? ?list(req,resp); ?? ??? ??? ?}?? ? ?? ??? ??? ?else if("load".equals(methodName)) { ?? ??? ??? ??? ??? ?load(req,resp); ?? ??? ??? ?}*/ ?? ??? ?} ?? ??? ? ?? ??? ?private void add(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?System.out.println("bookDao.add..."); ?? ??? ??? ? ?? ??? ?} ?? ??? ?private void edit(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?System.out.println("bookDao.edit..."); ?? ??? ??? ? ?? ??? ?} ?? ??? ?private void delete(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?System.out.println("bookDao.delete..."); ?? ??? ??? ? ?? ??? ?} ?? ??? ?private void list(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?System.out.println("bookDao.list..."); ?? ??? ??? ? ?? ??? ?} ?? ??? ?private void load(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?//修改页面数据回显 ?? ??? ??? ?System.out.println("bookDao.load..."); ?? ??? ??? ? ?? ??? ?} ?? ??? ?private void ref(HttpServletRequest req, HttpServletResponse resp) { ?? ??? ??? ?//修改页面数据回显 ?? ??? ??? ?System.out.println("bookDao.ref..."); ?? ??? ??? ? ?? ??? ?} } ?
|