Fork me on GitHub

SpringMVC学习1-简介

Spring MVC

SpringMVC是基于MVC思想的JAVA WEB实现框架,是Spring家族的一员,它基于前置控制器来接收并分发请求,支持参考验证、请求参数封装、拦截、Restful等功能,是目前较为流行的MVC框架

本系列学习笔记包含如下的课程内容:

  • MVC思想
  • Hello案例
  • 请求和响应处理
  • 文件上传和下载处理
  • 参数验证
  • 请求拦截
  • RESTful风格
  • 日志

MVC 模式

MVC = Model-View-Controller
springmvc

Controller

  • process and validate user inputs data
  • Interacts with the service layer for business logic
  • Handles navigation logic

Model

  • The contract between the Controller and the View
  • Contains the data needed to render the View
  • Populated by the Controller

View

  • renders the model data into UI elements

Benefits of MVC

  • Decoupling views and models
  • Reduces the complexity of design
  • Makes code more flexible and maintainable

Spring MVC 简介

  • 一个开源 MVC 框架(model-view-controller)
  • 简化 Java Web 开发复杂度
  • 与 Spring 核心 IOC 容器集成良好
  • 控制器生命周期由容器管理,可单元测试
  • 基于注解,配置简单,功能强大。
  • 支持JSR303的验证机制
  • 支持各种视图技术(jsp,tiles,FreeMarker,PDF…)
  • 支持RESTful和HTTP协议细节
  • 贯彻很多软件设计原则: SRP,DRY,COC…

技术栈

SpringMVC comes with the Spring distribution
springmvc

Web framework in use

springmvc