SpringMVC之基本配置

前言

前面我们了解了MVC模式,本章我们将学习SpringMVC框架的基本使用,掌握SpringMVC的配置方式是使用SpringMVC框架的基础。

SpringMVC的配置流程

导入maven依赖

添加spring的配置

配置web.xml文件

使用注解配置控制器

导入Maven依赖

这里我们需要spring-webmvc包

org.springframework

spring-webmvc

4.3.14.RELEASE

Spring配置文件

在resources目录下添加spring-mvc.xml配置文件

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/beans/spring-beans.xsd

http://www.springframework.org/schema/context

http://www.springframework.org/schema/context/spring-context.xsd

http://www.springframework.org/schema/mvc

http://www.springframework.org/schema/mvc/spring-mvc.xsd">

配置web.xml文件

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">

Archetype Created Web Application

dispatcherServlet

org.springframework.web.servlet.DispatcherServlet

contextConfigLocation

classpath:spring-mvc.xml

dispatcherServlet

/

添加控制器

/**

* 用户控制器

*/

@Controller

public class UserController {

/**

* 配置映射,接受请求http://localhost:8080/mvc/hello

* 返回hello字符串,由视图处理器,拼接成http://localhost:8080/mvc/WEB-INF/jsp/hello.jsp

*/

@RequestMapping(value = "hello",method = RequestMethod.GET)

public String hello(){

return "hello";

}

}

启动项目,输入URL进行测试:

SpringMVC的执行流程

1)用户发送请求给前端控制器

2)前端控制器将请求中的url和处理器映射中的url进行比较

3)返回url对应的处理器

4)前端控制器把处理器发送给处理器适配器

5)适配器会执行处理器中的逻辑代码

6)适配器执行完成后得到逻辑视图

7)适配器返回逻辑视图给前端控制器

8)前端控制器把逻辑视图发给视图解析器

9)视图解析器解析后返回真正的视图

10)将视图进行渲染,返回给用户

总结

通过SpringMVC的配置,我们能够运行一个基本的SpringMVC程序,对于Web程序来说还需要知道如何获得用户传递的参数,如何返回数据到页面上,这些我们将在后面章节继续学习。

你可能感兴趣的:(SpringMVC之基本配置)