代码改变世界

Spring(Spring MVC):Part one

  横刀天笑  阅读(1112)  评论(0编辑  收藏  举报

I think read open source code is a good way to  learn programming skill.DI is very important in OO programming,and Spring is a very power IoC container in Java world.So I choose Spring to learn.

If you want to read a software’s code,you should start with it’s entry point.I think may be Spring MVC is a entry point for Spring.So we can start with Spring MVC,and then go into Spring internal.

Spring MVC is a MVC framework,and it’s base on Spring IoC container,so it’s very flexible.You can write like this to create a controller:

   1: @Controller
   2: @RequestMapping("home")
   3: public class HomeController
   4: {
   5:   @RequestMapping("/index")
   6:   public ModelAndView index()
   7:   {
   8:        return new ModelAndView("index");
   9:   }
  10:  
  11:   @RequestMapping(value="/login",method=RequestMethod.POST)
  12:   public ModelAndView login(User user)
  13:   {
  14:      //do something
  15:      return new ModelAndView(...);
  16:   }
  17: }

 

That’s very clear,just some annotations from Spring,not introduce any additional classes,you don’t need extend any base class.You can reuse this code anywhere if you want.

As early mentioned,we should find a entry point when we read code.In Spring MVC,the org.springframework.web.servlet.DispatcherServlet is the entry point,so we read it first.

If you develop a Spring MVC application,you must config the DispatcherServlet in the web.xml like this:

   1: <servlet>
   2:     <servlet-name>book</servlet-name>
   3:     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
   4:     <init-param>
   5:         <param-name>contextConfigLocation</param-name>
   6:         <param-value>
   7:             spring-book-servlet.xml
   8:         </param-value>
   9:     </init-param>
  10: </servlet>

DispatcherServlet is a standard HttpServlet.DispatcherServlet inherit from FrameworkServlet,FrameworkServlet inherit from HttpServletBean,and HttpServletBean inherit from HttpServlet.

You can find a init() method in HttpServletBean,this is the java HttpSerlvet initlization method.This method will call two virtual methods,these two methods will be implemented by FrameworkServlet.FrameworkSevlet will initlization WebApplicationContext(Spring context),and delegate doGet,doPost,doPut,doDelete,doOptions to doService.doService is an abstract method,so FrameworkServlet’s subclass must implement this method.

In the FrameworkServlet’s initServletBean method(override method),call initWebApplicationContext method and iniFrameworkServlet method.initWebApplicationContext will call onRefresh method.onRefresh is a virtual method,it will be implemented by DispatcherServlet.

I will introduce the DispatcherServlet in next article detail.

 

Thanks~

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
点击右上角即可分享
微信分享提示