I'm introducing a JSF Faces flow into my application. This works, following the oracle documentation. But, only in the root folder.
Is it possible to place the JSF flow folder in a sub folder, else that root?
I can't get this working. That's all folks!
I solved this one myself.
A JSF flow definition can be done in 2 ways:
The first one can only define a flow-name, with the location defaulting to the root folder.
The second can define a location deeper in your folder structure.
Configuration file example: testflow.flow.xml
Only the id="testFlow" can be added to the definition, and not the path. This defaults to testFlow/testFlow.xhtml for the first page.
Configuration class example: TestFlow.java
Add the fully qualified path to the view node within this flow.
That's all folks!