目前我正在使用Rest API(Spring MVC)。 UI部分是在Angular JS中开发的。该项目将整合任何域名。
例如: www.xyz.com 包含我的注册按钮 www.abc.com 也可能包含我的注册按钮。
当我收到用户的请求时,我需要知道请求来自哪个域?
尝试以下内容:
@GET
@Path("/gethostname")
@Produces("application/json")
public void test(@Context HttpHeaders httpHeaders, @RequestBody JSONObject inputObj) {
System.out.println("=========> "+httpHeaders.getHeaderString("host"));
}
但它返回REST API(服务器)主机名。如何获取客户端主机名?
答案 0 :(得分:3)
有两种方法可以获得主机名
通过在服务器端调用以下代码,请注意,如果在浏览器中直接输入url,这将为null。
String referrer = request.getHeader("referer");
或者您可以在客户端和服务器上提供以下代码,您可以读取将返回主机名的domain
的值
<input type="button" value="Register" onClick="call()"/>
<script>
function call(){
var domain=window.location.hostname;
window.open('http://<your-hostname>/register?domain='+domain,'_self');
}
</script>
答案 1 :(得分:1)
答案 2 :(得分:0)
将HttpServletRequest请求添加到方法定义中,然后使用Servlet API获取客户端远程地址
@GET
@Path("/gethostname")
@Produces("application/json")
public void test(@Context HttpHeaders httpHeaders, @RequestBody JSONObject inputObj,, HttpServletRequest request) {
System.out.println("=========> "+request.getRemoteAddr());
}