gpt4 book ai didi

java - 如何在 Spring MVC 中请求完整的查询字符串?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:34:55 24 4
gpt4 key购买 nike

在 Spring MVC 中,我可以这样做来获取查询字符串中项目的值:

    public void sendMessage(HttpServletResponse response,
@RequestParam("Session Id") String sessionId,

但是如何将完整的查询字符串作为一个长字符串获取呢? IE。我不想要它的个别参数,我想要整个东西?

非常感谢!

最佳答案

添加 HttpServletRequest 作为方法的参数,并从请求中获取查询字符串:

public void sendMessage(HttpServletRequest request,
HttpServletResponse response {
String queryString = request.getQueryString();
}

关于java - 如何在 Spring MVC 中请求完整的查询字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9281067/

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