1

I have a four WAR files which are modules of application. How I can navigate between the pages? For example If I have a module which displays list of users and I want to click in a user's profile, how I can point the address of the module which holds the user's profile JSF page?

Regards

1 Answer 1

5

You can just use plain HTML <a> elements in JSF:

<a href="/othermodule/page.xhtml">Go to page in other module</a> 

Or if it runs at a different domain:

<a href="http://otherdomain.com/page.xhtml">Go to page in other domain</a> 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.