模拟实现SpringMVC功能

SpringMVC
MVC
​ m:model:模型,javabean

​ v:view:视图,html/jsp

​ c:controller:控制器:servlet

MyMVC模拟实现
一. 阶段一
index.html页面

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index</title>
</head>
<body>
<h1>this is index page.</h1>

<form method="post" action="ProductServlet">
    pid:<input type="text" name="pid" /><br />
    pname:<input type="text" name="pname" /><br />
    price:<input type="text" name="price" /><br />
    img:<input type="text" name="img" /><br />
    <input type="submit" value="submit" /><br />
</form>

</body>
</html>

ProductServlet.java

package com.qfedu.controller;

import com.qfedu.bean.Product;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@javax.servlet.annotation.WebServlet(urlPatterns = "/ProductServlet")
public class ProductServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//System.out.println(123);

    String pid = request.getParameter("pid");
    String pname = request.getParameter("pname");
    String sprice = request.getParameter("price");
    String img = request.getParameter("img");

    double price = sprice == null ? 0.0 : Double.parseDouble(sprice);

    System.out.println("pid : " + pid);
    System.out.println("price : " + sprice);
    System.out.println("pname : " + pname);
    System.out.println("img : " + img);

    Product p = new Product();

    p.setPid(pid);
    p.setPname(pname);
    p.setImg(img);
    p.setPrice(price);

    request.setAttribute("p", p);

    request.getRequestDispatcher("product.jsp").forward(request,response);
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response);
}

}

Product.jsp

<%--
Created by IntelliJ IDEA.
User: james
Date: 2020/3/2
Time: 2:52 PM
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>product</title>
</head>
<body>
<h1>this is product detail page.</h1>

<%--
    ognl: 对象导航语言
        user.addr.province;
--%>
<h3>pid : ${p.pid}</h3>
<h3>pname : ${p.pname}</h3>
<h3>price : ${p.price}</h3>
<h3>img : ${p.img}</h3>

</body>
</html>
可以实现页面的跳转以及数据的展示

问题:页面都在webapp下,安全性不高

二. 阶段二
为了提高程序的安全性,将所有的页面都放入webapp/WEB-INF/view目录下,index.html页面无法直接访问,需要专门建立一个Sevlet来访问该页面,实现内容请求转发

新建一个Servlet来实现内部转发 ProductInputServlet.java

package com.qfedu.controller;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@WebServlet(urlPatterns = "/ProductInputServlet")
public class ProductInputServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.getRequestDispatcher("/WEB-INF/view/index.html").forward(request, response);
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response);
}

}

webapp下的WEB-INF/view/index.html页面可以直接访问,更新ProductServlet.java

package com.qfedu.controller;

import com.qfedu.bean.Product;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@javax.servlet.annotation.WebServlet(urlPatterns = "/ProductServlet")
public class ProductServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//System.out.println(123);

    String pid = request.getParameter("pid");
    String pname = request.getParameter("pname");
    String sprice = request.getParameter("price");
    String img = request.getParameter("img");

    double price = sprice == null ? 0.0 : Double.parseDouble(sprice);

    System.out.println("pid : " + pid);
    System.out.println("price : " + sprice);
    System.out.println("pname : " + pname);
    System.out.println("img : " + img);

    Product p = new Product();

    p.setPid(pid);
    p.setPname(pname);
    p.setImg(img);
    p.setPrice(price);

    request.setAttribute("p", p);

    //request.getRequestDispatcher("product.jsp").forward(request,response);
    request.getRequestDispatcher("/WEB-INF/view/product.jsp").forward(request,response);
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response);
}

}

三. 阶段三,模拟Spring MVC的具体实现
Controller.java

package com.qfedu.mvc.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**

  • 自定义接口,实现管理多个请求,在模拟Spring MVC中的控制器
    */
    public interface Controller {

    String handleRequest(HttpServletRequest request, HttpServletResponse response);
    }

ProductInputController.java

package com.qfedu.mvc.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class ProductInputController implements Controller {
@Override
public String handleRequest(HttpServletRequest request, HttpServletResponse response) {
return "/WEB-INF/view/index.html";
}
}

ProductDetailController.java

package com.qfedu.mvc.controller;

import com.qfedu.bean.Product;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class ProductDetailController implements Controller {
@Override
public String handleRequest(HttpServletRequest request, HttpServletResponse response) {

    String pid = request.getParameter("pid");
    String pname = request.getParameter("pname");
    String sprice = request.getParameter("price");
    String img = request.getParameter("img");

    double price = sprice == null ? 0.0 : Double.parseDouble(sprice);

    System.out.println("pid : " + pid);
    System.out.println("price : " + sprice);
    System.out.println("pname : " + pname);
    System.out.println("img : " + img);

    Product p = new Product();

    p.setPid(pid);
    p.setPname(pname);
    p.setImg(img);
    p.setPrice(price);

    request.setAttribute("p", p);

    return "/WEB-INF/view/product.jsp";
}

}

DispatcherServlet.java负责将多个请求分发给各自不同的控制器

package com.qfedu.mvc.controller;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@WebServlet(urlPatterns = {"/ProductInput", "/ProductDetail"})
public class DispatcherServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    String requestURI = request.getRequestURI();
    //System.out.println(requestURI);

    String action = requestURI.substring(requestURI.lastIndexOf("/") + 1);

    //System.out.println(action);

    Controller controller = null;

    if("ProductInput".equalsIgnoreCase(action)){
        controller = new ProductInputController();
    }else if("ProductDetail".equalsIgnoreCase(action)){
        controller = new ProductDetailController();
    }

    String url = controller.handleRequest(request, response);

    request.getRequestDispatcher(url).forward(request, response);
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response);
}

}

结论:多个请求可以交给同一个Servlet(DispatcherServlet),然后各自不同的请求会交给各自的控制器。所有请求都叫个DispatcerServet,该角色相当于一个前端控制器,可以大大的提高客户的以及服务器端的工作效率。

四.阶段四
给阶段三的功能之上添加一个校验功能

新增一个ProductForm.java,主要用来做Product校验,struts1有专门的formbean对象用来校验表单数据,在某些框架中将formbean与bean对象合二为一了

package com.qfedu.form;

public class ProductForm {

private String pname;
private double price;
private String img;

public String getPname() {
    return pname;
}

public void setPname(String pname) {
    this.pname = pname;
}

public double getPrice() {
    return price;
}

public void setPrice(double price) {
    this.price = price;
}

public String getImg() {
    return img;
}

public void setImg(String img) {
    this.img = img;
}

}

ProductValidate.java,用来完成对于formbean进行校验,如果校验不通过,则将错误信息存储起来

package com.qfedu.validate;

import com.qfedu.form.ProductForm;

import java.util.ArrayList;
import java.util.List;

public class ProductValidate {

/**
 * 校验给定的ProductForm对象
 * @param pf 要校验的对象
 * @return 表单校验不成功,则将错误信息存储
 */
public List<String> validate(ProductForm pf){
    List<String> errors = null;

    String pname = pf.getPname();
    String img = pf.getImg();
    double price = pf.getPrice();

    errors = new ArrayList<>();

    if(pname == null || pname.length() == 0){
        errors.add("product name must not be empty.");
    }


    if(img == null || img.length() == 0){
        errors.add("product image must not be empty.");
    }

    if(price < 0){
        errors.add("the price of product must be a positive number.");
    }

    return errors;
}

}

更新ProductDetailController.java

package com.qfedu.mvc.controller;

import com.qfedu.ProductValidate;
import com.qfedu.bean.Product;
import com.qfedu.form.ProductForm;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;

public class ProductDetailController implements Controller {
@Override
public String handleRequest(HttpServletRequest request, HttpServletResponse response) {

    String pid = request.getParameter("pid");
    String pname = request.getParameter("pname");
    String sprice = request.getParameter("price");
    String img = request.getParameter("img");

    double price = sprice == null ? 0.0 : Double.parseDouble(sprice);

    System.out.println("pid : " + pid);
    System.out.println("price : " + sprice);
    System.out.println("pname : " + pname);
    System.out.println("img : " + img);

    ProductForm pf = new ProductForm();

    pf.setImg(img);
    pf.setPname(pname);
    pf.setPrice(price);

    ProductValidate pv = new ProductValidate();

    List<String> errors = pv.validate(pf);

    try {
        if(errors != null && !errors.isEmpty()){
            request.setAttribute("errors", errors);
            return "/WEB-INF/view/index.jsp";
        }else{

            Product p = new Product();

            p.setPid(pid);
            p.setPname(pf.getPname());
            p.setImg(pf.getImg());
            p.setPrice(pf.getPrice());

            request.setAttribute("p", p);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

    return "/WEB-INF/view/product.jsp";
}

}

自定义的MVC框架也就有了校验功能

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342