搭建简单的SpringMVC

第一步:开发注解

package com.springmvc.annotation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import org.omg.CORBA.portable.ValueBase;

@Documented
@Retention(RUNTIME)
@Target(TYPE)
public @interface Controller {
   String value() default "";
}


package com.springmvc.annotation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Documented
@Retention(RUNTIME)
@Target(FIELD)
public @interface Qualifier {
    String value() default "";
}


package com.springmvc.annotation;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Documented
@Retention(RUNTIME)
@Target({ TYPE, METHOD })
public @interface RequestMapping {
     String value() default "";
}

package com.springmvc.annotation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Documented
@Retention(RUNTIME)
@Target(TYPE)
public @interface Service {
     String value() default "";
}

第二步:测试类

Controller层

package com.xiaowei.controller;

import com.springmvc.annotation.Controller;
import com.springmvc.annotation.Qualifier;
import com.springmvc.annotation.RequestMapping;
import com.xiaowei.service.DataService;

@Controller
@RequestMapping("/demo")
public class DataController {
    @Qualifier("dataService")
    private DataService dataService;

    @RequestMapping("insert")
    public void insert(Integer id) {
        dataService.insert(id);
    }

    @RequestMapping("query")
    public void query(Integer id) {
        dataService.query(id);
    }

    @RequestMapping("delete")
    public void delete(Integer id) {
        dataService.delete(id);
    }

Service层

package com.xiaowei.serviceImpl;

import com.springmvc.annotation.Service;
import com.xiaowei.service.DataService;
@Service("dataService")
public class DataServiceImpl implements DataService {

    @Override
    public void insert(Integer id) {
        System.out.println("this is insert");
        
    }

    @Override
    public void query(Integer id) {
        System.out.println("this is query");
        
    }

    @Override
    public void delete(Integer id) {
        System.out.println("this is delete");
        
    }

    @Override
    public void update(Integer id) {
        System.out.println("this is update");
        
    }

}

第三步:创建DispatcherServlet(中央控制器)

package com.springmvc.servlet;

import java.io.File;
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentHashMap;

import javax.servlet.ServletConfig;
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 com.springmvc.annotation.Controller;
import com.springmvc.annotation.Qualifier;
import com.springmvc.annotation.RequestMapping;
import com.springmvc.annotation.Service;

/**
 * Servlet implementation class DispatcherServlet
 */
@WebServlet("/DispatcherServlet")
public class DispatcherServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;
    private static final List<String> componentClass = new ArrayList<String>();
    private static final Map<String, Object> instanceMap = new ConcurrentHashMap<String, Object>();
    private static final Map<String, Object> handleMap = new ConcurrentHashMap<String, Object>();

    /**
     * Default constructor.
     */
    public DispatcherServlet() {
    }

    /**
     * @see Servlet#init(ServletConfig)
     */
    public void init(ServletConfig config) throws ServletException {
        try {
        // 1.扫描包,读取配置文件
        componentScan("com.xiaowei");
        // 2.IOC
        createBean();
        // 3.依赖注入
        propertyInjection();
        // 4.地址映射
        handleMap();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private void handleMap() {
        if (instanceMap.size() <= 0) {
            return;
        }
        for (Entry<String, Object> entry : instanceMap.entrySet()) {
            // 如果是controller则建立映射关系
            if (entry.getValue().getClass().isAnnotationPresent(Controller.class)) {
                String basePath="";
                //判断是否存在根路径
                if(entry.getValue().getClass().isAnnotationPresent(RequestMapping.class)){
                RequestMapping baseRm = entry.getValue().getClass().getAnnotation(RequestMapping.class);
                 basePath = baseRm.value(); 
                }  
                Method[] methods = entry.getValue().getClass().getDeclaredMethods();

                for (Method method : methods) {
                    if (method.isAnnotationPresent(RequestMapping.class)) {
                        RequestMapping rm = method.getAnnotation(RequestMapping.class);
                        String path = rm.value();
                        //建立映射
                        handleMap.put(basePath+"/"+path,method);
                    }
                }

            }
        }

    }

    /**
     * 依赖注入
     */
    private void propertyInjection() {
        if (instanceMap.size() <= 0) {
            return;
        }
        for (Entry<String, Object> entry : instanceMap.entrySet()) {
            //获取实例化对对象的类声明属性
            Field[] fields = entry.getValue().getClass().getDeclaredFields();
            for (Field field : fields) {
                field.setAccessible(true);
                if (field.isAnnotationPresent(Qualifier.class)) {
                    Qualifier qf = field.getAnnotation(Qualifier.class);
                    String key = qf.value();
                    //获取依赖实例对象
                    Object instance = instanceMap.get(key);
                    if (instance != null) {
                        try {
                            //依赖注入
                            field.set(entry.getValue(), instance);
                        } catch (IllegalArgumentException e) {
                            e.printStackTrace();
                        } catch (IllegalAccessException e) {
                            e.printStackTrace();
                        }
                    }

                }
            }
        }

    }

    /**
     * 创建实例对象
     * 
     * @throws ClassNotFoundException
     */
    private void createBean() throws Exception {
        if (componentClass.size() <= 0) {
            return;
        }
        for (String className : componentClass) {
            //取得所有类的class对象
            Class<?> clazz = Class.forName(className.replace(".class", ""));
            //判断注解实例化
            if (clazz.isAnnotationPresent(Controller.class)) {
                Object instance = clazz.newInstance();
                Controller an = clazz.getAnnotation(Controller.class);
                String key = an.value();
                if (key.equals("")) {
                    key = clazz.getSimpleName();
                }
                //存放到instanceMap
                instanceMap.put(key, instance);
            } else if (clazz.isAnnotationPresent(Service.class)) {
                Object instance = clazz.newInstance();
                Service an = clazz.getAnnotation(Service.class);
                String key = an.value();
                if (key.equals("")) {
                    key = clazz.getSimpleName();
                }
                instanceMap.put(key, instance);
            } else {
                continue;
            }
        }

    }

    /**
     * 组件扫描
     */
    private void componentScan(String basePackeageName) {
        // 获得基包的URl路径
        URL url = this.getClass().getClassLoader().getResource("/" + basePackeageName.replaceAll("\\.", "/"));
        // 获得基包的文件路径
        String baseFilePath = url.getFile();
        File baseFile = new File(baseFilePath);
        if (baseFile.exists()) {
            // 获得基包下所有的文件路径
            String[] files = baseFile.list();
            for (String filePath : files) {
                File file = new File(baseFilePath + filePath);
                //如果是类文件保存起来,是文件夹递归获取
                if (file.isDirectory()) {
                    componentScan(basePackeageName + "." + file.getName());

                } else {
                    System.out.println(basePackeageName + "." + file.getName());
                    componentClass.add(basePackeageName + "." + file.getName());
                }
            }

        }

    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
     *      response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        doPost(request, response);
    }

    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse
     *      response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        //获取请求路径
        String uri = request.getRequestURI();
        String contextPath = request.getContextPath();
        uri.replace(contextPath, "");
        Method method = (Method)handleMap.get(uri);
        if(method!=null){
            Controller controller = method.getDeclaringClass().getAnnotation(Controller.class);
             String clazzName = controller.value();
             if(clazzName.equals("")){
                clazzName = method.getDeclaringClass().getSimpleName();
             }
            Object obj = instanceMap.get(clazzName);
            try {
                //传参时,想到的方法就是动态代理
                method.invoke(obj, 1);
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            } catch (IllegalArgumentException e) {
                e.printStackTrace();
            } catch (InvocationTargetException e) {
                e.printStackTrace();
            }
        }
        

    }

}

第四步:配置xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <servlet>
        <servlet-name>myspringmvc</servlet-name>
        <servlet-class>com.springmvc.servlet.DispatcherServlet</servlet-class>

    </servlet>

    <servlet-mapping>
        <servlet-name>myspringmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容