I'm migrating old projects from JSF 1.2 to JSF 2.0. The projects are JSP based.
I'm having trouble with implicit navigation after the migration. The action methods that return values (Let's say, for internal use) cause JSF to try to navigate to non existing pages.
For example, a method that return "Error"
will make the browser try to access /Error.jsp
which will result in a 404.
I would like, for these projects, to turn off implicit navigation. Is that possible?
Thanks!