Paul
Paul

Reputation: 1390

How to do Page Not Found in JSF application?

How to do Page Not Found in JSF application?

Upvotes: 2

Views: 919

Answers (1)

Bozho
Bozho

Reputation: 597124

in web.xml:

<error-page>
    <error-code>404</error-code>
    <location>/pageNotFound.xhtml</location>
</error-page>

Upvotes: 5

Related Questions