我有一个Home.xhtml
页面,其中部分中有登录表单。用户输入用户名和密码并登录该页面。我想显示相同的页面,但删除登录表单,但显示“欢迎用户名”和注销链接。我怎么能用JSF 2.1做到这一点?
答案 0 :(得分:1)
您可以使用“rendered”属性来显示或隐藏元素。 E.g:
<h:componentContainingTheSignInForm rendered="#{not bean.signedIn}">
signInForm...
</h:componentContainingTheSignInForm>
<h:componentToShowAfterSignIn rendered="#{bean.signedIn}">
Welcome...
</h:componentToShowAfterSignIn>
答案 1 :(得分:0)
这是我的模板:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<h:outputStylesheet name="default.css" library="css"></h:outputStylesheet>
<title><ui:insert name="title" /></title>
</h:head>
<h:body>
<ui:insert name="body"></ui:insert>
</h:body>
</html>
并在Home.xhtml
:
<?xml version="1.0" encoding="UTF-8"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
template="/template/templatePage.xhtml">
<ui:define name="title">
Login
</ui:define>
<ui:define name="body">
Here is一个更好的例子。