introduction JSF part 3 : Configuring and Running the Application
Set the IDE to display greeting.jsp when it runs the application and, finally, test the application.
- In the Projects window, right-click the project node and choose Properties.
- Click the Run node and type /faces/greeting.jsp in the Relative URL field. This allows you to specify the entry point for the application in the IDE. Click OK.
- Right-click the project node and choose Run (F6). The IDE builds the project, starts the application server, deploys the application, and shows the following page in the default external browser:
When you click the Submit button, you see the following:
Note: Because you have changed the entry point for the application to greeting.jsp, you can now delete welcomeJSF.jsp, which was generated by default when the project was created. The page is not required for this tutorial, nor follow-up tutorials.

