简单先了解 SpringMVC常用注解及其作用
@Controller:标识这个类是一个控制器
@RequestMapping:给控制器方法绑定一个uri
@ResponseBody:将java对象转成json,并且发送给客户端
@RequestBody:将客户端请求过来的json转成java对象
@RequestParam:当表单参数和方法形参名字不一致时,做一个名字映射
@PathVarible:用于获取uri中的参数,比如user/1中1的值
Rest风格的新api
@RestController相当于@Controller+ @ResponseBody
@GetMapping@DeleteMapping@PostMapping@PutMapping
其他注解
@SessionAttribute:声明将什么模型数据存入session
@CookieValue:获取cookie值
@ModelAttribute:将方法返回值存入model中
@HeaderValue:获取请求头中的值
开始还是介绍一下流程:
1、构建web项目( 依赖导入maven )
2、web.xml
3、web.xml绑定springmvc-servlet.xml
4、编写controller接口
5、展示页面jsp
maven依赖:
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl -->
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
web.xml 部分作用:前端控制器设置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--配置DispachxerServlet:这个是SpeingMvc的核心,请求分发器,前端控制器-->
<servlet>
<servlet-name>SpringMvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--DiapacherServlet必须要绑定Spring配置文件-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<!--启动级别 为1 ,意思是与服务器一块启动-->
<load-on-startup>1</load-on-startup>
</servlet>
<!--/ 所有访问的 URL 都由DispatcherServlet来解析-->
<servlet-mapping>
<servlet-name>SpringMvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
springmvc-servlet.xml中作用Spring配置文件,开启注解 视图解析器
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!--开启注解-->
<context:annotation-config/>
<!--自动扫描包,让注解指定包下的注解生效,又ioc容器同一管理-->
<context:component-scan base-package="com.fanlan.Controller"/>
<!--springmvc不处理静态资源-->
<mvc:default-servlet-handler/>
<!--支持mvc注解驱动,
在spring中采用@RequestMapping注解在完成映射关系必须向上下文中注册DefaultAnnotationHandlerMapping
必须和一个AnnotationMethodhandlerAdapter实例,而annotation-driven配置帮助我们完成上述两个实例的注入-->
<mvc:annotation-driven/>
<!--视图解析-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--后缀-->
<property name="suffix" value=".jsp"/>
</bean>
</beans>
编写controller接口
package com.fanlan.Controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller//自动在spring 中注册been 被spring自动接管
public class Concroller {
//项目的访问地址:http://localhost:8080/SpringMvc/hello
@RequestMapping("/hello")
//Model 传数据专用
public String hello(Model model){
//像模型中添加属性msg,可以jsp页面中取出渲染
model.addAttribute("msg","hello Springmvc");
//WEB-INF/jsp/hello
return "hello";//会经过视图解析器
}
//项目的访问地址:http://localhost:8080/SpringMvc/hello
@RequestMapping("/hello1")
// Model 传数据专用
public String hello1(Model model){
//像模型中添加属性msg,可以jsp页面中取出渲染
model.addAttribute("msg","hello Springmvc1");
//WEB-INF/jsp/hello
return "hello";//会经过视图解析器
}
}
然后就是一个浏览器hello.jsp展示:(注意的路径)
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
${msg}
</body>
</html>
项目就可以启动了,相比之前注解方式更加简单明了,也许这就这就是框架的魅力。