| <%@page contentType="text/html"%> |
| <%@page pageEncoding="UTF-8"%> |
| |
| <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%> |
| <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%> |
| |
| |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| <title>JSP Page</title> |
| </head> |
| <body> |
| <f:view> |
| <f:loadBundle basename="bundles.bundle1" var="bundle1"/> |
| <h1>JSP Page</h1> |
| <!-- no errors --> |
| <h:outputText value="#{bundle1.}"/> |
| <h:outputText value="#{bundle1.x}"/> |
| </f:view> |
| </body> |
| </html> |