手写spring+springmvc+mybatis框架篇【springmvc】

简介: 手写spring+springmvc+mybatis框架篇【springmvc】

先放一张网上的很好的一张原理图

图片出自,这篇博客原理也写的很清晰明了。我的实现也是借鉴了这张图


image.png


先说一下我的实现思路:


1 在MyDispatcherServlet中的servlet初始化的时候,绑定标有@MyController注解类下面的@MyRequestMappign的value值和对应的方法。绑定的方式是放在map集合中。这个map集合就是上图说的handlerMapping,返回的handler也就是一组键值对。


2 找到对应的方法后,反射执行方法,在方法中创建一个modelandview对象,model也就是我们说的数据域,view返回的是一个视图名称,也就是我们说的视图域,当然,我这里只有jsp,spring做的很复杂。支持多种类型。最后所谓的渲染,也就是将这个数据域中的数据会添加到request请求中,然后转发。返回客户端。


3 绑定参数模型这一部分略为复杂。在下面讲解


下面是MyDispatcherServlet

这个servlet的作用就是接收用户请求,然后派发注意标红处bingdingMethodParamters方法,这个方法实现了参数的绑定。


package spring.servlet;
import lombok.extern.slf4j.Slf4j;
import spring.factory.InitBean;
import spring.springmvc.Binding;
import spring.springmvc.Handler;
import spring.springmvc.MyModelAndView;
import spring.springmvc.ViewResolver;
import javax.servlet.ServletContext;
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.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static spring.springmvc.BindingRequestAndModel.bindingRequestAndModel;
/**
* Created by Xiao Liang on 2018/6/27.
*/
@WebServlet(name = "MyDispatcherServlet")
@Slf4j
public class MyDispatcherServlet extends HttpServlet {
   /**
    * 初始化servlet,将bean容器和HandlerMapping放到servlet的全局变量中
    */
   @Override
   public void init() {
       InitBean initBean = new InitBean();
       initBean.initBeans();
       //根据bean容器中注册的bean获得HandlerMapping
       Map<String, Method> bindingRequestMapping = Handler.bindingRequestMapping(initBean.beanContainerMap);
       ServletContext servletContext = this.getServletContext();
       servletContext.setAttribute("beanContainerMap", initBean.beanContainerMap);
       servletContext.setAttribute("bindingRequestMapping", bindingRequestMapping);
   }
   protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       try {
           doDispatch(request, response);
       } catch (Exception e) {
           log.error("控制器处理异常");
           e.printStackTrace();
       }
   }
   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       doPost(request, response);
   }
   //接收到请求后转发到相应的方法上
   private void doDispatch(HttpServletRequest request, HttpServletResponse response) throws IOException, InvocationTargetException, IllegalAccessException, InstantiationException {
       ServletContext servletContext = this.getServletContext();
       //获取扫描controller注解后url和方法绑定的mapping,也就是handlerMapping
       Map<String, Method> bindingRequestMapping =
               (Map<String, Method>) servletContext.getAttribute("bindingRequestMapping");
       //获取实例化的bean容器
       Map<String, Object> beanContainerMap = (Map<String, Object>) servletContext.getAttribute("beanContainerMap");
       String url = request.getServletPath();
       Set<Map.Entry<String, Method>> entries = bindingRequestMapping.entrySet();
       List<Object> resultParameters = Binding.bingdingMethodParamters(bindingRequestMapping, request);
       for (Map.Entry<String, Method> entry :
               entries) {
           if (url.equals(entry.getKey())) {
               Method method = entry.getValue();
               Class<?> returnType = method.getReturnType();
                   //如果返回值是MyModelAndView,开始绑定
               if ("MyModelAndView".equals(returnType.getSimpleName())){
                   Object object = beanContainerMap.get(method.getDeclaringClass().getName());
                   //获取springmvc.xml中配置的视图解析器
                   ViewResolver viewResolver = (ViewResolver) beanContainerMap.get("spring.springmvc.ViewResolver");
                   String prefix = viewResolver.getPrefix();
                   String suffix = viewResolver.getSuffix();
                   MyModelAndView myModelAndView = (MyModelAndView) method.invoke(object, resultParameters.toArray());
                   //将request和model中的数据绑定,也就是渲染视图
                   bindingRequestAndModel(myModelAndView,request);
                   String returnViewName = myModelAndView.getView();
                   //返回的路径
                   String resultAddress = prefix + returnViewName + suffix;
                   try {
                       request.getRequestDispatcher(resultAddress).forward(request,response);
                   } catch (ServletException e) {
                       e.printStackTrace();
                   }
               }
           }
       }
   }
}


首先是绑定方法和url,是Handler类,用如下对象绑定

Map<String, Method> handlerMapping = new ConcurrentHashMap<>();

package spring.springmvc;
import lombok.extern.slf4j.Slf4j;
import spring.Utils.AnnotationUtils;
import spring.annotation.MyController;
import spring.annotation.MyRequestMapping;
import spring.exception.springmvcException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/**
* @ClassName Handler
* @Description  遍历bean容器,在有controller注解的类中有requestmapping扫描的方法,则将方法和url和方法绑定
* @Data 2018/7/3
* @Author xiao liang
*/
@Slf4j
public class Handler {
   public static Map<String, Method> bindingRequestMapping(Map<String, Object> beanContainerMap){
       Map<String, Method> handlerMapping = new ConcurrentHashMap<>();
       if (beanContainerMap != null){
           Set<Map.Entry<String, Object>> entries = beanContainerMap.entrySet();
           for (Map.Entry<String, Object> entry :
                   entries) {
               Class aClass = entry.getValue().getClass();
               Annotation annotation = aClass.getAnnotation(MyController.class);
               Method[] methods = aClass.getMethods();
               if (!AnnotationUtils.isEmpty(annotation) && methods != null){
                   for (Method method:
                           aClass.getMethods()) {
                       MyRequestMapping requestMappingAnnotation = method.getAnnotation(MyRequestMapping.class);
                       if (!AnnotationUtils.isEmpty(requestMappingAnnotation)){
                           String key = requestMappingAnnotation.value();
                           handlerMapping.put(key,method);
                       }
                   }
               }
           }
       }
       else{
           throw new springmvcException("实例化bean异常,没有找到容器");
       }
       return handlerMapping;
   }
}


参数绑定支持


  1. @MyRequestMapping(用来绑定简单数据类型)
  2. @MyModelAndAttribute(绑定实体类)
  3. 不写注解,直接写实体类。


下面先贴一下这一部分的结构关系图


image.png


这里用多态的设计思想,对于bindingParamter方法写了两种实现,方便大家自行扩展

package spring.springmvc;
import spring.Utils.AnnotationUtils;
import spring.Utils.isBasicTypeUtils;
import spring.annotation.MyModelAttribute;
import spring.annotation.MyRequstParam;
import spring.exception.springmvcException;
import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* @ClassName Binding
* @Description
* @Data 2018/7/4
* @Author xiao liang
*/
public class Binding {
   public static  List<Object> bingdingMethodParamters(Map<String, Method> bindingRequestMapping, HttpServletRequest request) {
       List<Object> resultParameters  = new ArrayList<>();
       Set<Map.Entry<String, Method>> entries = bindingRequestMapping.entrySet();
       for (Map.Entry<String, Method> entry :
               entries) {
           Method method = entry.getValue();
           Parameter[] parameters = method.getParameters();
           for (Parameter parameter :
                   parameters) {       //遍历每个参数,如果参数存在注解,将这个参数添加到resultParameters中
               if (!AnnotationUtils.isEmpty(parameter.getAnnotations())){
                   Object resultParameter = null;
                   try {
                       resultParameter = bingdingEachParamter(parameter, request);
                   } catch (IllegalAccessException e) {
                       e.printStackTrace();
                       throw new springmvcException("绑定参数异常");
                   } catch (NoSuchMethodException e) {
                       e.printStackTrace();
                       throw new springmvcException("绑定参数异常");
                   } catch (InstantiationException e) {
                       e.printStackTrace();
                       throw new springmvcException("绑定参数异常");
                   }
                   resultParameters.add(resultParameter);
               }
           }
       }
       return resultParameters;
   }
private static Object bingdingEachParamter(Parameter parameter, HttpServletRequest request) throws IllegalAccessException, NoSuchMethodException, InstantiationException {
        //如果注解是MyRequstParam,则用BindingByMyRequstParam来执行装配
        if (!AnnotationUtils.isEmpty(parameter.getAnnotation(MyRequstParam.class))){
            BindingParamter bindingParamter = new BindingByMyRequstParam();
            Object resultParameter = bindingParamter.bindingParamter(parameter, request);
            return resultParameter;
        }
        //如果注解是MyModelAttribute,则用BindingByMyModelAttribute来执行装配
        else if (!AnnotationUtils.isEmpty(parameter.getAnnotation(MyModelAttribute.class))){
            BindingParamter bindingParamter = new BindingByMyModelAttribute();
            Object resultParameter = bindingParamter.bindingParamter(parameter,request);
            return resultParameter;
        }
        //在没有注解的时候,自动识别,如果是基本数据类型用MyRequstParam装配,如果是用户自定义类型用MyModelAttribute装配
        else if(parameter.getAnnotations() == null || parameter.getAnnotations().length ==0){
            boolean flag = isBasicTypeUtils.isBasicType(parameter.getType().getSimpleName());
            if (flag){
                BindingParamter bindingParamter = new BindingByMyRequstParam();
                Object resultParameter = bindingParamter.bindingParamter(parameter, request);
                return resultParameter;
            }
            else{
                BindingParamter bindingParamter = new BindingByMyModelAttribute();
                Object resultParameter = bindingParamter.bindingParamter(parameter,request);
                return resultParameter;
            }
        }
        return null;
    }
}



下面是接口BindingParamter 和两个实现类BindingByMyModelAttributeBindingByMyRequstParam

package spring.springmvc;
import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Parameter;
/**
* @ClassName BindingRoles
* @Description
* @Data 2018/7/4
* @Author xiao liang
*/
public interface BindingParamter {
    Object bindingParamter(Parameter parameter, HttpServletRequest request) throws IllegalAccessException, InstantiationException, NoSuchMethodException;
}
package spring.springmvc;
import spring.Utils.StringUtils;
import spring.annotation.MyRequstParam;
import spring.exception.springmvcException;
import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Parameter;
/**
* @ClassName BindingByMyRequstParam
* @Description 参数注解是MyMyRequstParam时,绑定数据的类
* @Data 2018/7/4
* @Author xiao liang
*/
public class BindingByMyRequstParam implements BindingParamter {
   @Override
   public Object bindingParamter(Parameter parameter, HttpServletRequest request) {
       MyRequstParam myRequstParam = parameter.getAnnotation(MyRequstParam.class);
       //获得注解的value值
       String MyRequstParamValue = myRequstParam.value();
       //获得参数的类名
       String parameterType = parameter.getType().getSimpleName();
       String parameter1 = request.getParameter(MyRequstParamValue);
       if (StringUtils.isEmpty(parameter1)) {
           throw new springmvcException("绑定参数异常");
       }
       //parameter1赋值
       if (parameterType.equals("String")) {
           return parameter1;
       } else if (parameterType.equals("Integer") || parameterType.equals("int")) {
         Integer binddingParameter =  Integer.valueOf(parameter1);
         return binddingParameter;
       }
       return null;
   }
}


package spring.springmvc;
import lombok.extern.slf4j.Slf4j;
import spring.Utils.AnnotationUtils;
import spring.Utils.ConvertUtis;
import spring.Utils.GetMethodName;
import spring.Utils.StringUtils;
import spring.annotation.MyModelAttribute;
import spring.exception.springmvcException;
import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
/**
* @ClassName BindingByMyModelAttribute
* @Description 参数注解是MyModelAttribute时,绑定数据的类
* @Data 2018/7/4
* @Author xiao liang
*/
@Slf4j
public class BindingByMyModelAttribute implements   BindingParamter {
   @Override
   public Object bindingParamter(Parameter parameter, HttpServletRequest request) throws IllegalAccessException, InstantiationException, NoSuchMethodException {
       MyModelAttribute myModelAttribute = parameter.getAnnotation(MyModelAttribute.class);
       //获得参数的类名
       Class<?> aClass = parameter.getType();
       if (!AnnotationUtils.isEmpty(myModelAttribute)){
           if (!aClass.getSimpleName().equals(myModelAttribute.value())){
               throw new springmvcException("实体类绑定异常,请重新检查");
           }
       }
       Field[] fields = aClass.getDeclaredFields();
       Object object = aClass.newInstance();
       //遍历每个属性,用set注入将值注入到对象中
       for (Field field :
               fields) {
           //获得用户传来的值
           String parameter1 = request.getParameter(field.getName());
           if (!StringUtils.isEmpty(parameter1)){
               //将用户传过来的值转换成对应的参数类型
               Object setObject = ConvertUtis.convert(field.getType().getSimpleName(),parameter1);
               String methodName = GetMethodName.getSetMethodNameByField(field.getName());
               Method method = aClass.getMethod(methodName, field.getType());
               try {
                   //反射set注入
                   method.invoke(object,setObject);
               } catch (InvocationTargetException e) {
                   log.error("{}属性赋值异常",field.getName());
                   e.printStackTrace();
               }
           }
       }
       //返回对注入值后的对象
       return object;
   }
}


绑定完参数,就该返回ModelAndView了,

package spring.springmvc;
import lombok.Data;
/**
* @ClassName MyModelAndView
* @Description
* @Data 2018/7/4
* @Author xiao liang
*/
@Data
public class MyModelAndView {
   private String view;
   private MyModelMap modelMap;
   public MyModelAndView(String view) {
       this.view = view;
   }
}

view是视图名称,还有viewResolver,用来接收xml文件中定义的前缀和后缀。modelMap是数据域,最后渲染的时候要绑定到request中。

package spring.springmvc;
import lombok.Data;
/**
* @ClassName ViewResolver
* @Description 视图解析器 前缀和后缀
* @Data 2018/7/4
* @Author xiao liang
*/
@Data
public class ViewResolver {
   private String prefix = "";
   private String suffix = "";
}

最后的渲染类

package spring.springmvc;
import javax.servlet.http.HttpServletRequest;
import java.util.Map;
import java.util.Set;
/**
* @ClassName BindingRequestAndModel
* @Description
* @Data 2018/7/6
* @Author xiao liang
*/
public class BindingRequestAndModel {
   //遍历modelMap,然后将model中的数据绑定到requst中
   public static void bindingRequestAndModel(MyModelAndView myModelAndView, HttpServletRequest request) {
       MyModelMap myModelMap = myModelAndView.getModelMap();
       if (!myModelMap.isEmpty()){
           Set<Map.Entry<String, Object>> entries1 = myModelMap.entrySet();
           for (Map.Entry<String, Object> entryMap :
                   entries1) {
               String key = entryMap.getKey();
               Object value = entryMap.getValue();
               request.setAttribute(key,value);
           }
       }
   }
}

至此,最后在MyDispatcherServlet中用转发操作将试图返回。

request.getRequestDispatcher(resultAddress).forward(request,response);

我将此项目上传到了github,需要的童鞋可以自行下载。

https://github.com/836219171/MySSM

相关文章
|
27天前
|
数据采集 监控 前端开发
二级公立医院绩效考核系统源码,B/S架构,前后端分别基于Spring Boot和Avue框架
医院绩效管理系统通过与HIS系统的无缝对接,实现数据网络化采集、评价结果透明化管理及奖金分配自动化生成。系统涵盖科室和个人绩效考核、医疗质量考核、数据采集、绩效工资核算、收支核算、工作量统计、单项奖惩等功能,提升绩效评估的全面性、准确性和公正性。技术栈采用B/S架构,前后端分别基于Spring Boot和Avue框架。
|
1月前
|
Java API 数据库
Spring Boot框架因其简洁的配置、快速的启动特性及丰富的功能集而备受开发者青睐
本文通过在线图书管理系统案例,详细介绍如何使用Spring Boot构建RESTful API。从项目基础环境搭建、实体类与数据访问层定义,到业务逻辑实现和控制器编写,逐步展示了Spring Boot的简洁配置和强大功能。最后,通过Postman测试API,并介绍了如何添加安全性和异常处理,确保API的稳定性和安全性。
38 0
|
19天前
|
SQL Java 数据库连接
持久层框架MyBatisPlus
持久层框架MyBatisPlus
33 1
持久层框架MyBatisPlus
|
3天前
|
Java 数据库连接 数据库
spring和Mybatis的逆向工程
通过本文的介绍,我们了解了如何使用Spring和MyBatis进行逆向工程,包括环境配置、MyBatis Generator配置、Spring和MyBatis整合以及业务逻辑的编写。逆向工程极大地提高了开发效率,减少了重复劳动,保证了代码的一致性和可维护性。希望这篇文章能帮助你在项目中高效地使用Spring和MyBatis。
7 1
|
1月前
|
前端开发 Java 数据库连接
Spring 框架:Java 开发者的春天
Spring 框架是一个功能强大的开源框架,主要用于简化 Java 企业级应用的开发,由被称为“Spring 之父”的 Rod Johnson 于 2002 年提出并创立,并由Pivotal团队维护。
50 1
Spring 框架:Java 开发者的春天
|
23天前
|
JavaScript 安全 Java
如何使用 Spring Boot 和 Ant Design Pro Vue 构建一个前后端分离的应用框架,实现动态路由和菜单功能
本文介绍了如何使用 Spring Boot 和 Ant Design Pro Vue 构建一个前后端分离的应用框架,实现动态路由和菜单功能。首先,确保开发环境已安装必要的工具,然后创建并配置 Spring Boot 项目,包括添加依赖和配置 Spring Security。接着,创建后端 API 和前端项目,配置动态路由和菜单。最后,运行项目并分享实践心得,帮助开发者提高开发效率和应用的可维护性。
41 2
|
22天前
|
消息中间件 NoSQL Java
springboot整合常用中间件框架案例
该项目是Spring Boot集成整合案例,涵盖多种中间件的使用示例,每个案例项目使用最小依赖,便于直接应用到自己的项目中。包括MyBatis、Redis、MongoDB、MQ、ES等的整合示例。
80 1
|
1月前
|
Java 数据库连接 开发者
Spring 框架:Java 开发者的春天
【10月更文挑战第27天】Spring 框架由 Rod Johnson 在 2002 年创建,旨在解决 Java 企业级开发中的复杂性问题。它通过控制反转(IOC)和面向切面的编程(AOP)等核心机制,提供了轻量级的容器和丰富的功能,支持 Web 开发、数据访问等领域,显著提高了开发效率和应用的可维护性。Spring 拥有强大的社区支持和丰富的生态系统,是 Java 开发不可或缺的工具。
|
1月前
|
缓存 Cloud Native 安全
探索阿里巴巴新型ORM框架:超越MybatisPlus?
【10月更文挑战第9天】在Java开发领域,Mybatis及其增强工具MybatisPlus长期占据着ORM(对象关系映射)技术的主导地位。然而,随着技术的发展,阿里巴巴集团推出了一种新型ORM框架,旨在提供更高效、更简洁的开发体验。本文将对这一新型ORM框架进行探索,分析其特性,并与MybatisPlus进行比较。
34 0
下一篇
无影云桌面