Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java で記述されたサーバー側アプリケーションがあります。
Jetty を使用してサーブレットを提供します。
最終ユーザーはブラウザを使用してアプリを「使用」します。
サーバー側の観点からHttpServletRequest、サーバーがインストールされているのと同じマシンで実行されているブラウザーからかどうかを知ることは可能ですか?
HttpServletRequest
(私は明らかにテストしていて、それについて何かしたいと思っています)
ServletRequest.getRemoteHost()リクエストを送信したクライアントの完全修飾名を返す whichを使用して、それをローカル ホスト名と比較できます。InetAddress.getLocalHost().getCanonicalHostName()
ServletRequest.getRemoteHost()
InetAddress.getLocalHost().getCanonicalHostName()