简体   繁体   中英

How to navigate in JSF page between WAR files?

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

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM