我在
有一个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;