码迷,mamicode.com
首页 > 编程语言 > 详细

spring mvc get请求也可以接受DTO对象

时间:2017-09-19 22:57:55      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:接受   参数   amp   ogg   public   opera   encode   val   sum   

spring mvc get请求也可以接受DTO对象,比如:url上面你还是将参数&符号连接起来,并自动封装进一个DTO对象里。

只有@RequestBody注解spring mvc才会从http body里去拿数据。

默认不填注解的参数都会从url上面去拿。

@ApiOperation(value = "查询卡券详情接口", consumes = "application/x-www-form-urlencoded")
@RequestMapping(value = "/detail", method = RequestMethod.GET)
public ProfitCouponDetailDTO queryDetail(@Valid CouponDetailQueryDTO queryDTO) {
logger.info("查询卡券详情入参:[{}]", queryDTO);
String offerType = queryDTO.getOfferType();
if (isNotCouponOrGP(offerType)) {
throw new ParammeterException("offer类型错误");
}

spring mvc get请求也可以接受DTO对象

标签:接受   参数   amp   ogg   public   opera   encode   val   sum   

原文地址:http://www.cnblogs.com/panxuejun/p/7554287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!