Im using:
- NetBeans
- Maven web application
- Java server faces
- Primefaces
To navigate betwen pages im using:
<p:menu>
<p:submenu label="Menu">
<p:menuitem value="example 1 (google)" outcome="googlePage" />
<p:menuitem value="Upload File's" outcome="uploadFiles" />
<p:menuitem value="example 3 (go to START)" outcome="index" />
</p:submenu>
</p:menu>
The 1st url looks like:
http://localhost:8080/projectName/
and than, when i want to go to other page the url is not looking good:
http://localhost:8080/projectName/faces/googlePage.xhtml
and the same for index page:
http://localhost:8080/projectName/faces/index.xhtml
what i need to do to make it more frendly?