h:outputFormat tag in JSF
Introduction
The outputFormat tag renders parameterized text and allows you to customize the appearance of this text using CSS styles. Parameterized text is compound text containing placeholder values to be replaced by actual values at rendering time.
JSP File (index.jsp)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <%@page pageEncoding="UTF-8"%>
<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<html>
<body>
<f:view>
<h:form>
<h:outputFormat value="Number is {0}.">
<f:param value="#{jsfBean.number}" />
</h:outputFormat>
</h:form>
</f:view>
</body>
</html> |
JavaBean (JavaBeatJsfBean.java)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package javabeat.jsf;
/**
* source : www.javabeat.net
*/
public class JavaBeatJsfBean {
private String number = "10";;
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public String submit()
{
System.out.println(this.number);
return "";
}
} |
faces-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <?xml version='1.0' encoding='UTF-8'?>
<faces-config version="1.2"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
<managed-bean>
<managed-bean-name>jsfBean</managed-bean-name>
<managed-bean-class>javabeat.jsf.JavaBeatJsfBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
</faces-config> |
view in the browser

Show Full Image
Comments
comments
July 4, 2008
JSF