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.
使用 jsp,我可以使用以下方法轻松打印登录的主体:<%= request.getUserPrincipal() %>现在我想使用 JSF 2.0 + Facelets 来做同样的事情。怎么做?我已经尝试了一段时间,但到目前为止没有成功。
<%= request.getUserPrincipal() %>
提前发送。
<h:outputText value="#{request.getUserPrincipal()}" />如果您只想显示当前用户,应该在 JSF 2.0 中工作。
<h:outputText value="#{request.getUserPrincipal()}" />