Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the error page I would like to display the url what the user requested.

in my web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <display-name>MyStuff</display-name>

    <error-page>
        <error-code>404</error-code>
        <location>/WEB-INF/error-404.jsp</location>
    </error-page>

-this will forward to error-404.jsp, and here is the content of that file:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Page Not found</title>
</head>
<body>
<p align="center">
    <%

        out.println("Requested resource: " + request.getRequestURL()
                + " not found");
    %>
</body>
</html>

the problem it is the request.getRequestURL() need to be changed, but don't know the keyword for what to search :)

When I start the browser for http://localhost:8080/MyStuff than the message it will be:

Requested resource: http://localhost:8080/MyStuff/WEB-INF/error-404.jsp not found

How to solve this? - (I don't know the keyword to search it)

share|improve this question

1 Answer

up vote 1 down vote accepted

Here is a simple example of JSP error page that shows the error code and the URL of the requested page:

<%@ page language="java" isErrorPage="true" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>Error page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
    <button onclick="history.back()">Back to Previous Page</button>
    <h1>Page Not Found.</h1><br />

    <p><b>Error code:</b> ${pageContext.errorData.statusCode}</p>
    <p><b>Request URI:</b> ${pageContext.request.scheme}://${header.host}${pageContext.errorData.requestURI}</p><br />
</body>
</html>

P.S.
Unrelated but use of scriptlets inside JSP is highly discouraged. Read this: http://stackoverflow.com/a/3180202/814702

share|improve this answer
1  
this is perfect! I am using Spring MVC, just in 404,403,500 custom error pages I want to do some "dirty" work – matheszabi Jan 13 at 4:02
@matheszabi I see. Glad it helped. – informatik01 Jan 13 at 4:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.