hello jsf
<%@ page language="java" %> <%@ taglib uri="/WEB-INF/tld/html_basic.tld" prefix="h" %> <%@ taglib uri="/WEB-INF/tld/jsf_core.tld" prefix="f" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName() +":" +request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Hello world</title> </head> <body> <f:view> <h:outputLabel value="#(helloWorld.greeting)"></h:outputLabel> </f:view> </body> </html>