本文介绍了如何在Spring Boot中检索查询参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Spring Boot开发一个项目。我有一个接受 GET 请求的控制器。

I am developing a project using Spring Boot. I've a controller which accepts GET requests.

目前我接受对以下类型网址的请求:

Currently I'm accepting requests to the following kind of URLs:

但我想接受使用查询参数的请求

这是我的控制器的代码:

Here's the code of my controller:

@RequestMapping(value="/data/{itemid}", method = RequestMethod.GET)
public @ResponseBody
item getitem(@PathVariable("itemid") String itemid) {
    item i = itemDao.findOne(itemid);
    String itemname = i.getItemname();
    String price = i.getPrice();
    return i;
}


推荐答案

使用 @RequestParam

@RequestMapping(value="user", method = RequestMethod.GET)
public @ResponseBody item getitem(@RequestParam("data") String itemid){

    item i = itemDao.findOne(itemid);
    String itemname = i.getItemname();
    String price = i.getPrice();
    return i;
}

这篇关于如何在Spring Boot中检索查询参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 23:12
查看更多