tags:

views:

28

answers:

1

How to do Page Not Found in JSF application?

+2  A: 

in web.xml:

<error-page>
    <error-code>404</error-code>
    <location>/pageNotFound.xhtml</location>
</error-page>
Bozho
Thank you very much...
Paul