在Spring应用程序中获取资源的完整路径

时间:2016-04-29 11:49:13

标签: spring spring-mvc

我在

有一个POST方法

http://example.com/rest/cars

返回新创建的对象的JSON表示。

如何构建与创建的资源交互的完整路径?示例位置可以是

http://example.com/rest/cars/1

http://anotherdomain.com/rest/cars/1

我想在应用程序内动态获取域部分。我已经尝试了 org.springframework.web.context.WebApplicationContext 和其他几个地方,但没有成功。有没有人这样做过?

我使用Spring框架并在Tomcat中部署,如果它改变任何东西......

编辑:

在评论询问我尝试实现的目标之后:

String domainPart = "http://howdoigethis.com"; // need to fetch domain dynamically
Integer id = 1;
String selfLocationOfId1 = domainPart + "/rest/cars/" + id;

0 个答案:

没有答案