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.remoteUser}在我的xhtml-file 中访问:例如。登录为${request.remoteUser}。
${request.remoteUser}
xhtml
但是如何${request.remoteUser}在我的 BackingBean.java 中访问。
在 JSF 支持 bean 中,您可以通过以下方式访问它:
HttpServletRequest request=(HttpServeltRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest() request.getRemoteUser();
请参阅此处和此处的文档。