Servlet抽取技术简单案例

在实际的开发中,我们经常会遇见一个业务逻辑下会有多个功能的情况,对应到java中也就是会产生多个Servlet.

例如用户业务下就有登陆,注册,退出功能(如图1):

image

当Servlet过多对性能会产生影响,那么我们能不能把同一逻辑下的多个Servlet合为一个Servlet呢?

对于这个问题的核心是一个Servlet如何判断出浏览器客户端的真实请求功能呢?这里我们可以通过请求传递参数来实现,服务器获取到请求的参数,通过判断参数来调用不同的方法来实现业务功能.

注意:这里客户端必须与服务器端进行约定,我这里使用的是method代表功能.
思想:如下图所示:

image

环境搭建:

图片.png

浏览器客户端代码我使用的是JSP文件

客户端JSP代码:



<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<%--
    向服务器发送请求
    约定好键值对数据,告知服务器
    请求的功能是什么
--%>
<body>
     <a href="${pageContext.request.contextPath}/user?method=login">登陆</a><br>
    <a href="${pageContext.request.contextPath}/user?method=reg">注册</a><br>
    <a href="${pageContext.request.contextPath}/user?method=exit">退出</a>
</body>
</html>

Java代码:

package com.xfz.servlet;

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 = "/user")
public class UserServlet extends HttpServlet {
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
      /*
       * 获取提交的参数
       * 并判断内容调用方法
       * */
      String method = request.getParameter("method");
      if("login".equals(method)){
          login(request,response);
      }else if("reg".equals(method)){
          reg(request,response);
      }else if("exit".equals(method)){
          exit(request,response);
      }
  }

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

  public void login(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
      System.out.println("处理登陆");
  }

  public void reg(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
      System.out.println("处理注册");
  }

  public void exit(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
      System.out.println("处理退出");
  }

}

运行效果:


图片.png

到这里我们的需求基本实现了,但是此处的servlet代码还有优化的空间,比如当用户的功能太多了,我们判断方法的逻辑也会变得很多,会出现很多if,else if的情况.所以这里我们将使用反射的来优化过多的逻辑判断问题.UserServlet进行如下优化:

package com.xfz.servlet;

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;
import java.lang.reflect.Method;

@WebServlet(urlPatterns = "/user")
public class UserServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        /*
         * 获取提交的参数
         * 并判断内容调用方法
         * */
        String method = request.getParameter("method");
        //非空判断
        if(method == null || "".equals(method)){return;}
        //反射获取该类class对象
        Class clazz = this.getClass();
        //method就是方法名,反射获取方法
        try {
            Method md = clazz.getMethod(method, HttpServletRequest.class, HttpServletResponse.class);
            md.invoke(this,request,response);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

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

    public void login(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理登陆");
    }

    public void reg(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理注册");
    }

    public void exit(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理退出");
    }

}

效果如下,相关处理依然能够实现,并且无需过多的逻辑判断:

图片.png

做到这里,我们发现在同一个业务下基本没有问题了,但是多个业务下就会出现代码重复的问题.
这里的用户模块,订单模块,商品模块都会使用同一的步骤:获取客户端参数/反射技术获取方法/调用方法,因为他们是不同的业务模块,所以不能使用一个Servlet,那么对于这种情况下的相同代码我们可以使用继承的方式,进行向上抽取来优化过多重复代码的问题.如下:


图片.png

优化如下:

第一步:创建BaseServlet类继承HttpServlet 重写doGet() doPost()方法
第二步:将重复代码向上提取到该类doGet()方法中
第三步:因为该类不需要被访问也不需要创建对象,所以无需注解,类也使用abstract修饰

    package com.xfz.servlet;

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

abstract class BaseServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        /*
         * 获取提交的参数
         * 并判断内容调用方法
         * */
        String method = request.getParameter("method");
        //非空判断
        if(method == null || "".equals(method)){return;}
        //反射获取该类class对象
        Class clazz = this.getClass();
        //method就是方法名,反射获取方法
        try {
            Method md = clazz.getMethod(method, HttpServletRequest.class, HttpServletResponse.class);
            md.invoke(this,request,response);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

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

UserServlet代码:
第一步:继承BaseServlet类
第二步:由于父类中有doGet()和doPost()方法,所以该类不需要,删除

package com.xfz.servlet;

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

@WebServlet(urlPatterns = "/user")
public class UserServlet extends BaseServlet {

    public void login(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理登陆");
    }

    public void reg(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理注册");
    }

    public void exit(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("处理退出");
    }

}

效果如图:


图片.png

图片.png

到这里对于多个Servlet的抽取优化基本完成,当有别的业务如Order订单逻辑需要我们处理时,也只需新建普通类添加注解并继承BaseServlet,写入相关功能方法即可.

示例:
客户端JSP代码:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<a href="${pageContext.request.contextPath}/order?method=add">添加订单</a><br>
<a href="${pageContext.request.contextPath}/order?method=remove">移除订单</a><br>
<a href="${pageContext.request.contextPath}/order?method=show">查看订单</a>
</body>
</html>

OrderServlet代码:

    package com.xfz.servlet;

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


@WebServlet(urlPatterns = "/order")
public class OrderServlet extends BaseServlet{
    public void add(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
        System.out.println("添加订单");
    }

    public void remove(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("移除订单");
    }

    public void show(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException{
        System.out.println("查看订单");
    }
}

效果如下依然可以实现,并且更加简洁:


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

推荐阅读更多精彩内容