java path 注解_@PathVariable注解的使用和@Requestparam

一、 @PathVariable

@PathVariable这是一个路径映射格式的书写方式注解,在类映射路径的后加上/{对应方法参数中属性@PathVariable("code")中的code},

@SuppressWarnings({ "unchecked", "rawtypes" })

@RequestMapping(value = "/decodeUserInfo/{codee}", method = RequestMethod.GET)

@ResponseBody

public Map decodeUserInfo(@PathVariable("codee") String codee) {

Map map = new HashMap();

/自己定义的code

String code = codee;

324757a4a07031c0961d1d62c84457f3.png

二、@Requestparam注解将请求参数绑定至方法参数即你可以使用@RequestParam注解将请求参数绑定到你控制器的方法参数上

1.value:请求参数名(必须配置)

2.required:是否必须,默认true,即请求中必须包含该参数,如果没有包含,将会抛出异常(可选配置)

3.defaultValue:默认值,如果设置了该值,require将自动设为false,无论你是否配置了required,配置了什么值,required将自动设为false

@Requestparam(value="表示参数名字",require=boolean类型表示是否为必须,defaultValue=“表示默认值”)

@SuppressWarnings({ "unchecked", "rawtypes" })

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

@ResponseBody

public Map decodeUserInfo(@RequestParam String codee) {

Map map = new HashMap();

/自己定义的code

String code = codee;

9d6ae681c7dad94c5a0bae7499a13057.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值