JBoss.orgCommunity Documentation

Chapter 6. Creating the Start Page

You also need to create a start page as an entry point into the application.

A JSP editor will open up on the newly created file.

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head></head>
<body>
<jsp:forward page="/pages/inputname.jsf" />
</body>
</html>

Note the .jsf extension for the file name. This is a mapping defined in the web.xml file for the project for invoking JavaServer Faces when you run the application.