@RequestParam的具体使用

2021/6/8 10:22:35

本文主要是介绍@RequestParam的具体使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

@RequestParam的具体使用

  • 作用:将请求体url里面的参数绑定到controller里对应名字的参数上

  • 语法:@RequestParam(value=”参数名”,required=”true/false”,defaultValue=””)

  • 具体代码:

package com.day01springmvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
 
/**
 * @ Author     :ShaoWei Sun.
 * @ Date       :Created in 20:58 2018/11/16
 */
@RestController
public class HelloController2 {
 
    
    /**
     * 接收普通请求参数
     * http://localhost:8080/hello/show16?name=linuxsir
     * url参数中的name必须要和@RequestParam("name")一致
     * @return
     */
    
    @RequestMapping("show16")
    public String test16(@RequestParam("name")String name){
        return name;
    }
}

img

    /**
     * 接收普通请求参数
     * http://localhost:8080/hello/show17
     * url中没有name参数不会报错、有就显示出来
     * @return
     */
    @RequestMapping("show17")
    public String test17(@RequestParam(value="name",required=false)String name){
       return name;
    }
 

img

 /**
     * 接收普通请求参数
     * http://localhost:8080/hello/show18?name=998 显示为998
     * http://localhost:8080/hello/show18?name 显示为hello
     * @return
     */
    @RequestMapping("show18")
    public String test18(@RequestParam(value="name",required=true,defaultValue="hello")String name){
       return name;
    }
 

quired=true,defaultValue=“hello”)String name){
return name;
}

![img](https://www.www.zyiz.net/i/ll/?i=img_convert/0bb416c4e8ec3e281c4e23664f71a13c.png)


这篇关于@RequestParam的具体使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程