I just want to override the HTTP 404 error page in Jboss7.
I have tried ,
<error-page>
<error-code>404</error-code>
<location>/NotFound.jsp</location>
</error-page>
But, until unless my application got up, I cannot see the page for 404 status code.
I need to have to have an error page while jboss got up and deploying my application, mean time if anybody tries to access my application , need to show them customize error page.
Could anybody help me out ?
Thanks in advance.