HttpServletRequestを使用してソースドメインを取得するにはどうすればよいですか?ソースドメインはリクエスターのドメインです。
ありがとう。
あなたはどちらかを行うことができます
// gets client (browser)'s hostname
String Host = request.getRemoteHost();
OR
// get the server's domain name.
String domain = new URL(request.getRequestURL().toString()).getHost();
ホスト名リクエスト
InetAddress ip = InetAddress.getLocalHost();
String hostname = ip.getHostName();
out.print("Your current IP address : " + ip+"\n");
out.print("Your current Hostname : " + hostname);