当前位置:   article > 正文

@RequestParam注解在使用过程一些注意。_@requestparam' not applicable to field

@requestparam' not applicable to field

在项目开发过程的一些教训经验记录。

http接口定义如下:

  1. @RequestMapping(value="/fetchResData",method = RequestMethod.POST,
  2. consumes = MediaType.APPLICATION_JSON_VALUE)
  3. void fetchResData(
  4. @RequestParam(value = "id")Long id
  5. ,@RequestParam(value = "start") String start
  6. ,@RequestParam(value = "end") String end);

请求方式为POST,Content-Type是json格式,@RequestParam的required属性值默认是true。

客户端在调用该接口,正常传入参数值,但是请求没有进入服务端设置的断点。根据跟踪的异常提示如下:

  1. {
  2. "timestamp": 1560339674464,
  3. "status": 400,
  4. "error": "Bad Request",
  5. "exception": "org.springframework.web.bind.MissingServletRequestParameterException",
  6. "message": "Required Long parameter 'id' is not present",
  7. "path": "/Service/fetchResData"
  8. }

 进一步分析客户端的请求体信息,如果接口使用@RequestParam绑定基本数据类型情况下,请求的参数是接在URL后面,消息体是没有数据的。而接口定义使用的consumes = MediaType.APPLICATION_JSON_VALUE。因此无法从消息体中获取有效的参数值。从而服务端认为接口参数是必填的,而实际情况是空值。

针对上述问题的解决办法:

1,修改接口定义中consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE 等同于http中content-type为         Content-Type=mutipart/form-data和Content-Type=application/x-www-form-urlencoded

2,Post方式改为Get方式。

 

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号