如何使用HttpServletRequest获取源域?
源域是请求者的域。
谢谢。
最佳答案
你可以做
// gets client (browser)'s hostname
String host = request.getRemoteHost();
要么
// get the server's domain name.
String domain = new URL(request.getRequestURL().toString()).getHost();
关于java - 使用HttpServletRequest获取请求发送者的URL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7246543/