SpringMVC3

简介: SpringMVC3

修改RequestMappingController

package com.atguigu.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
//@RequestMapping("/hello")
public class RequestMappingController {
//    报错
//    @RequestMapping(value="/")
//    public String index(){
//        return "target";
//    }
    @RequestMapping(
            value = {"/testRequestMapping","/test"}
    )
//    @RequestMapping("/testRequestMapping")
    public String success(){
        return "success";
    }
}

index.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>首页</h1>
<a th:href="@{/hello/testRequestMapping}">测试RequestMapping注解的位置</a><br/>
<a th:href="@{/testRequestMapping}">测试RequestMapping注解的value属性-->/testRequestMapping</a><br/>
<a th:href="@{/test}">测试RequestMapping注解的value属性-->/test</a><br/>
</body>
</html>



4、@RequestMapping注解的method属性

不设置method属性,get和post都行

index.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>首页</h1>
<a th:href="@{/hello/testRequestMapping}">测试RequestMapping注解的位置</a><br/>
<a th:href="@{/testRequestMapping}">测试RequestMapping注解的value属性-->/testRequestMapping</a><br/>
<a th:href="@{/test}">测试RequestMapping注解的value属性-->/test</a><br/>
<a th:href="@{/test}">测试RequestMapping注解的method属性-->get</a><br/>
<form th:action="@{/test}" method="post">
    <input type="submit" value="测试RequestMapping注解的method属性-->post">
</form>
</body>
</html>

@RequestMapping注解的method属性通过请求的请求方式(get或post)匹配请求映射


@RequestMapping注解的method属性是一个RequestMethod类型的数组,表示该请求映射能够匹配多种请求方式的请求


若当前请求的请求地址满足清求融射的value属性,但是请求方式不满足method属性,则浏览器报错405:

Request method ‘POST’ not supported

<a th:href="@{/test}">测试@RequestMapping的value属性-->/test</a><br>  <form th:action="@{/test}" method="post">
<input type="submit">
</form>
@RequestMapping(
  value = {"/testRequestMapping",  "/test"},
  method = {RequestMethod.GET, RequestMethod.POST}
}
public string testRequestMapping({
  return "success";
}

演示

RequestMappingController

package com.atguigu.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
//@RequestMapping("/hello")
public class RequestMappingController {
//    报错
//    @RequestMapping(value="/")
//    public String index(){
//        return "target";
//    }
    @RequestMapping(
            value = {"/testRequestMapping","/test"},
            //RequestMethod
            //    GET,
            //    HEAD,
            //    POST,
            //    PUT,
            //    PATCH,
            //    DELETE,
            //    OPTIONS,
            //    TRACE;
            method={RequestMethod.GET}
    )
//    @RequestMapping("/testRequestMapping")
    public String success(){
        return "success";
    }
}

post



            method={RequestMethod.GET,RequestMethod.POST}

post



注:
1、对于处理指定请求方式的控制器方法,SpringMVC中提供了@RequestMapping的派生注解
处理get请求的映射-->@GetMapping
处理post请求的映射->@PostMapping
处理put请求的映射-->@PutMapping
处理delete请求的映射->@DeleteMapping
2、常用的请求方式有get,post, put, delete
但是目前浏览器只支持get和post,若在form表单提交时,为method设置了其他请求方式的字符串
(put或  delete),则按照默认的请求方式get处理
若要发送put和delete请求,则需要通过spring提供的过滤器HiddenHttpMethodFilter,在restful部分会讲到  

演示

RequestMappingController

 @GetMapping("/testGetMapping")
    public String testGetMapping(){
        return "success";
    }

index.html

<a th:href="@{/testGetMapping}">测试GetMapping注解-->testGetMapping</a><br/>

5、@RequestMapping注解的params属性(了解)

@RequestMapping注解的params属性通过请求的请求参数匹配请求映射

@RequestMapping注解的params属性是一个字符串类型的数组,可以通过四种表达式设置请求参数和请求映射的匹配关系


“param”:要求请求映射所匹配的请求必须携带param请求参数

“!param”:要求映射所匹配的请求必须不能携带param请求参数

'paran=value"要求请求映射所匹配 的请求必须携带param请求参数且param=value

“param!=value”:要求请求映射所匹配的请求必须携带param请求参数但param!=value

<a th:href="@{/test(username='admin',password=123456)">测试@RequestMapping的params属性--  >/test</a><br>
@RequestMapping(
value = {"/testRequestMapping", "/test"}
,method = {RequestMethod. GET, RequestMethod.posT}  ,params = I"username", "password!=123456"}
一多
简硅谷

演示

RequestMappingController

    @RequestMapping(
            value = "/testParamsAndHeaders",
            params = {"username"}
    )
    public String testParamsAndHeaders(){
        return "success";
    }hod.POST},
            params={"username"}
    )

index.html

<a th:href="@{/testParamsAndHeaders}">测试RequestMapping注解的params属性->testParamsAndHeaders</a><br/>



index.html

<!--<a th:href="@{/testParamsAndHeaders?username=admin}">测试RequestMapping注解的params属性&ndash;&gt;testParamsAndHeaders</a><br/>-->
<a th:href="@{/testParamsAndHeaders(username='admin',password=123456)}">测试RequestMapping注解的params属性-->testParamsAndHeaders</a><br/>
 @RequestMapping(
            value = "/testParamsAndHeaders",
            params = {"!username"}
    )
    public String testParamsAndHeaders(){
        return "success";
    }



6、 @RequestMapping注解的headers属性(了解)


@RequestMapping注解的headers属性通过请求的请求头信息匹配请求映射

@RequestMapping注解的headers属性是一个字符串类型的数组,可以通过四种表达式设置请求头信息和请求映射的匹配关系

“header”:要求请求映射所匹配的请求必须携带header请求头信息

“header”:要求请求映射所匹配的请求必须不能携带header请求头信息

“header=value”:要求请求映射所匹配的请求必须携带header请求头信息且header=value

“header!=value”:要求请求映射所匹配的请求必须携带header请求头信息且header!=value

若当前请求满足@RequestMapping注解的value和method属性,但是不满足headers属性,此时页面显示404错误,即资源未找到

演示

@RequestMapping(
            value = "/testParamsAndHeaders",
            params = {"username","password!=123"},
            headers={"Host=localhost:8081"}
    )
    public String testParamsAndHeaders(){
        return "success";
    }

8081


7、SpringMVC支持ant风格的路径

?:表示任意的单个字符

*:表示任意的0个或多个字符

**:表示任意的一层或多层目录

注意:在使用**时,只能使用**/xxx的方式

演示

RequestMappingController

@RequestMapping("/a?a/testAnt")
    public String testAnt(){
        return "success";
    }

index.html

<a th:href="@{/a1a/testAnt}">测试RequestMapping可以匹配ant风格的路径-->使用?</a><br/>



?: \不好使

    @RequestMapping("/a*a/testAnt")
<a th:href="@{/a1a/testAnt}">测试RequestMapping可以匹配ant风格的路径-->使用*</a><br/>



    @RequestMapping("/a**a/testAnt")
<a th:href="@{/a1a/testAnt}">测试RequestMapping可以匹配ant风格的路径-->使用**</a><br/>


aa/a

      @RequestMapping("/**/testAnt")





8.、 SpringMVC支持路径中的占位符(重点)

原始方式:/deleteUser?id=1

rest方式:/deleteUser/1

SpringMVC路径中的占位符常用于restful风格中,当请求路径中将某些数据通过路径的方式传输到服务器中,就可以在相应的@RequestMapping注解的value属性中通过占位符{xxx}表示传输的数据,在通过@PathVariable注解,将占位符所表示的数据赋值给控制器方法的形参

<a th:href="@{/testRest/1/admin}">测试路径中的占位符-->/testRest</a><br>
@RequestMapping("/testRest/{id}/{username}")
public String testRest(@PathVariable("id") String id, @PathVariable("username") String  username){
  System.out.println("id:"+id+",username:"+username);
  return "success";
}
//最终输出的内容为-->id:1,username:admin

演示

@RequestMapping("/testPath/{id}")
    public String testPath(@PathVariable("id")Integer id){
        System.out.println("id:"+id);
        return "success";
    }
<a th:href="@{/testPast/1}">测试RequestMapping支持路径中的占位符</a><br/>
    @RequestMapping("/testPath/{id}/{username}")
    public String testPath(@PathVariable("id")Integer id,@PathVariable("username") String username){
        System.out.println("id:"+id+",username="+username);
        return "success";
    }
<a th:href="@{/testPast/1/admin}">测试RequestMapping支持路径中的占位符->/testPath</a><br/>



四、SpringMVC获取请求参数

1、通过servletAPI获取

准备

controller下新建ParamController

package com.atguigu.mvc.controller;
import org.springframework.stereotype.Controller;
@Controller
public class ParamController {
}

templates下新建test_param.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>测试请求参数</title>
</head>
<body>
<h1>测试请求参数</h1>
</body>
</html>



1、通过servletAPI获取

将HttpServletRequest作为控制器方法的形参,此时HttpServletRequest类型的参数表示封装了当前请求的请求 报文的对象

@RequestMapping("/testParam")
public string testParam(HttpServletRequest request){
  string username = request.getParameter("username");
  string password = request.getParameter("password");
  System.out.println("username:"+username+",password:"+password);
  return "success";

演示

ParamController

 @RequestMapping("/testServletAPI")
    //形参位置的request表示当前请求
    public String testServletAPI(HttpServletRequest request){
        String username = request.getParameter("username");
        String password = request.getParameter("password");
        System.out.println("username:"+username+",password:"+password);
        return "success";
    }

test_param.html

<a th:href="@{testServletAPI(username='admin',password=123456)}">测试使用ServletAPI获取请求参数</a>



2、通过控制器方法的形参获取请求参数

在控制器方法的形参位置,设置和请求参数同名的形参,当浏览器发送请求,匹配到请求映射时,在 DispatcherServlet中就会将请求参数赋值给相应的形参

<a th:href="@{/testParam(username='admin',password=123456)}">测试获取请求参数--  >/testParam</a><br>
@RequestMapping("/testparam")
public String testParam(string username, string password){
  System.out.printIn("username:"+username+",password:"+password);
  return "success";
}

注:

若请求所传输的请求参数中有多个同名的请求参数,此时可以在控制器方法的形参中设置字符串数组或者字符串类型的形参接收此请求参数


若使用字符串数组类型的形参,此参数的数组中包含了每一个数据


若使用字符串类型的形参,此参数的值为每个数据中间使用逗号拼接的结果
演示

<form th:action="@{/testParam}" method="get">
    用户名:<input type="text" name="username"><br>
    密码:<input type="password" name="password"><br>
    爱好:<input type="checkbox" name="hobby" value="a">a
    <input type="checkbox" name="hobby" value="b">b
    <input type="checkbox" name="hobby" value="c">c<br>
    <input type="submit" value="测试使用控制器的形参获取请求参数">
</form>
   @RequestMapping("/testParam")
    public String testParam(String username,String password){
        System.out.println("username:"+username+",password:"+password);
        return "success";
    }
http://localhost:8080/springMVC/testParam?username=admin&password=123&hobby=a&hobby=b&hobby=c



@RequestMapping("/testParam")
    public String testParam(String username,String password,String hobby){
        System.out.println("username:"+username+",password:"+password+",hobby:"+hobby);
        return "success";
    }



  @RequestMapping("/testParam")
    public String testParam(String username,String password,String[] hobby){
        //若请求参数中出现多个同名的请求参数,可以在控制器方法的形参位置设置字符串类型或字符串数组来接受此请求参数
        //若使用字符串类型的形参,最终结果为请求参数每一个值之间使用逗号进行拼接的结果
       System.out.println("username:"+username+",password:"+password+",hobby:"+ Arrays.toString(hobby));
        return "success";
    }



3、@RequestParam

@RequestParam是将请求参数和控制器方浜的形参创建映射关系


@RequestParam注解一共有三个属性

value:指定为形参赋值的请求参数的参数名

required:设置是否必须传输此请求参数,默认值为true

若设置为true时,则当前请求必须传输value所指定的请求参数,若没有传输该请求参数,且没有设置defaultValue属性,则页面报错400:Required String parameter’xx’is not present;若设置为false,则当前请求不是必须传输value所指定的请求参数,若没有传输,则注解所标识的形参的值为null


defaultValue:不管required属性值为true或false,当value所指定的请求参数没有传输或传输的是""时,则使用默认值为形参赋值

演示

http://localhost:8080/springMVC/testParam?user_name=admin&password=123&hobby=a&hobby=b&hobby=c




 @RequestMapping("/testParam")
    public String testParam(
            @RequestParam("user_name") String username,
            String password,
            String[] hobby){
        //若请求参数中出现多个同名的请求参数,可以在控制器方法的形参位置设置字符串类型或字符串数组来接受此请求参数
        //若使用字符串类型的形参,最终结果为请求参数每一个值之间使用逗号进行拼接的结果
        System.out.println("username:"+username+",password:"+password+",hobby:"+ Arrays.toString(hobby));
        return "success";
    }




required = true
必须 传输参数

http://localhost:8080/springMVC/testParam?&password=&hobby=a&hobby=b&hobby=c


 @RequestMapping("/testParam")
    public String testParam(
            @RequestParam(value = "user_name",required = false) String username,
            String password,
            String[] hobby){
        //若请求参数中出现多个同名的请求参数,可以在控制器方法的形参位置设置字符串类型或字符串数组来接受此请求参数
        //若使用字符串类型的形参,最终结果为请求参数每一个值之间使用逗号进行拼接的结果
        System.out.println("username:"+username+",password:"+password+",hobby:"+ Arrays.toString(hobby));
        return "success";
    }



@RequestMapping("/testParam")
    public String testParam(
            @RequestParam(value = "user_name",required = false,defaultValue = "呵呵") String username,
            String password,
            String[] hobby){
        //若请求参数中出现多个同名的请求参数,可以在控制器方法的形参位置设置字符串类型或字符串数组来接受此请求参数
        //若使用字符串类型的形参,最终结果为请求参数每一个值之间使用逗号进行拼接的结果
        System.out.println("username:"+username+",password:"+password+",hobby:"+ Arrays.toString(hobby));
        return "success";
    }





user_name=


相关文章
|
Java Spring
81.【SpringMVC】(二)
81.【SpringMVC】
102 0
|
前端开发 Java 程序员
|
前端开发 Java 网络架构
|
4月前
|
Java API 网络架构
SpringMVC(一)(2)
SpringMVC(一)(2)
25 1
|
5月前
|
前端开发 Java 数据格式
|
5月前
|
JSON 前端开发 JavaScript
|
6月前
|
存储 JSON 安全
SpringMVC 02
SpringMVC 02
28 0
|
前端开发 应用服务中间件
SpringMVC4
SpringMVC4
43 0
|
前端开发 Java Spring
你真的了解SpringMVC吗?(下)
你真的了解SpringMVC吗?(下)
59 0
|
6月前
|
前端开发 Java API