gpt4 book ai didi

java - 如何使用 HTTPServletRequest 在 spring 中读取请求参数值

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:44:56 31 4
gpt4 key购买 nike

我想使用 HttpServletRequest 从 url 中读取 requestParams 数据

http://localhost:8080/api/type?name=xyz&age=20

我的 Controller 中的方法不会定义@RequestParam,它只是

@RequestMapping(value = "/**", method = RequestMethod.GET)
public ResponseEntity<String> getResponse(
final HttpServletRequest request) {}

我只想使用请求读取参数而不是整个 url。

最佳答案

首先,你为什么要定义:

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

?

也许你应该使用:

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

并读取参数:

request.getParameter("name");
request.getParameter("age"):

关于java - 如何使用 HTTPServletRequest 在 spring 中读取请求参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9428194/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com