springBoot Controller的使用

注解作用
@Controller处理http请求
@RestControllerSpring4之后新加的注解,作用和原来的@ResponseBody配合@Controller相同。用于返回Json
@PathVariable获取url中的参数
@RequestParam获取请求参数的值
@RequestMapping配置url映射,需要多个时可以将value写成一个集合
@GetMapping组合注解,相当于@RequestMapping(method = RequestMethod.GET)
@PostMapping组合注解,相当于@RequestMapping(method = RequestMethod.POST)

示例:

    @RequestMapping(value = "/say/{id}" ,method = RequestMethod.GET)
    public Integer say(@PathVariable("id") Integer id){
        return  id;
    }
    @RequestMapping(value = "/say" ,method = RequestMethod.GET)
    public Integer say(@RequestParam(value = "id",required = false,defaultValue ="1") Integer myId){
        return  myId;
    }

注:@RequestParam中‘required ’值表示时候可不传入,‘defaultValue ’值表示当不传入是的默认值,必须为String类型

  • @RequestMapping
    @RequestMapping(value = "/say" ,method = RequestMethod.GET)

等价于

    @GetMapping(value = "/say")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值