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.
<%=request.getRemoteUser()%>Tomcat 内でログオンしているユーザーの ID を取得するために使用しています。JSP Simple Expression Language を使用した同等の機能は何ですか?
<%=request.getRemoteUser()%>
これは
${pageContext.request.remoteUser}
のような暗黙的な EL オブジェクトの詳細についてPageContextは、こちらを参照してください。
PageContext