如何在 Spring Boot RestController 中获取请求 URL [英] How to get request URL in Spring Boot RestController

查看:115
本文介绍了如何在 Spring Boot RestController 中获取请求 URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 RestController 中获取请求 URL.RestController 有多个用 @RequestMapping 注释的方法用于不同的 URI,我想知道如何从 @RequestMapping 注释中获取绝对 URL.

I am trying to get the request URL in a RestController. The RestController has multiple methods annotated with @RequestMapping for different URIs and I am wondering how I can get the absolute URL from the @RequestMapping annotations.

@RestController
@RequestMapping(value = "/my/absolute/url/{urlid}/tests"
public class Test {
   @ResponseBody
   @RequestMapping(value "/",produces = "application/json")
   public String getURLValue(){
      //get URL value here which should be in this case, for instance if urlid      
       //is 1 in request then  "/my/absolute/url/1/tests"
      String test = getURL ?
      return test;
   }
} 

推荐答案

您可以尝试将 HttpServletRequest 类型的附加参数添加到 getUrlValue() 方法:

You may try adding an additional argument of type HttpServletRequest to the getUrlValue() method:

@RequestMapping(value ="/",produces = "application/json")
public String getURLValue(HttpServletRequest request){
    String test = request.getRequestURI();
    return test;
}

这篇关于如何在 Spring Boot RestController 中获取请求 URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆