blob: 2c9bc834efbe14ef0b6d6377d87b58b8ef79a5e4 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
xmlns:grv="http://myfaces.apache.org/groovy">
<h:head>
<title>Hello World 2</title>
</h:head>
<h:body>
<ui:composition template="/template.xhtml">
<ui:define name="body">
<h1 style="color: yellow;">
This is a test case for the MyFaces view scope
</h1>
<h:form>
<h:outputText value="#{viewScopedBean.helloWorld}"/>
<h:commandLink action="#{viewScopedBean.doAction}" value="Press me for refresh"/>
</h:form>
</ui:define>
</ui:composition>
</h:body>
</html>