标签: jsf facelets principal
使用jsp我可以使用:<%= request.getUserPrincipal() %>轻松打印登录的主体现在我想使用JSF 2.0 + Facelets来做同样的事情。怎么做?我已经尝试了一段时间但到目前为止没有成功。
<%= request.getUserPrincipal() %>
提前Tx。
答案 0 :(得分:2)
<h:outputText value="#{request.getUserPrincipal()}" />应该可以在JSF 2.0中使用。
<h:outputText value="#{request.getUserPrincipal()}" />