Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
6ab47db1
Commit
6ab47db1
authored
Nov 18, 2014
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Omit null pathInfo from ErrorPageFilter's error message
Fixes gh-1944
parent
41cb5678
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
5 deletions
+50
-5
ErrorPageFilter.java
...org/springframework/boot/context/web/ErrorPageFilter.java
+10
-5
ErrorPageFilterTests.java
...pringframework/boot/context/web/ErrorPageFilterTests.java
+40
-0
No files found.
spring-boot/src/main/java/org/springframework/boot/context/web/ErrorPageFilter.java
View file @
6ab47db1
...
...
@@ -164,9 +164,9 @@ class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer imple
IOException
{
if
(
logger
.
isErrorEnabled
())
{
String
message
=
"Forwarding to error page from request
[
"
+
request
.
getServletPath
()
+
request
.
getPathInfo
()
+
"]
due to exception ["
+
ex
.
getMessage
()
+
"]
"
;
String
message
=
"Forwarding to error page from request "
+
getDescription
(
request
)
+
" due to exception ["
+
ex
.
getMessage
()
+
"]"
;
logger
.
error
(
message
,
ex
);
}
...
...
@@ -179,9 +179,14 @@ class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer imple
request
.
getRequestDispatcher
(
path
).
forward
(
request
,
response
);
}
private
String
getDescription
(
HttpServletRequest
request
)
{
return
"["
+
request
.
getServletPath
()
+
(
request
.
getPathInfo
()
==
null
?
""
:
request
.
getPathInfo
())
+
"]"
;
}
private
void
handleCommittedResponse
(
HttpServletRequest
request
,
Throwable
ex
)
{
String
message
=
"Cannot forward to error page for request
to
"
+
request
.
getRequestURI
(
)
+
" as the response has already been"
String
message
=
"Cannot forward to error page for request "
+
getDescription
(
request
)
+
" as the response has already been"
+
" committed. As a result, the response may have the wrong status"
+
" code. If your application is running on WebSphere Application"
+
" Server you may be able to resolve this problem by setting"
...
...
spring-boot/src/test/java/org/springframework/boot/context/web/ErrorPageFilterTests.java
View file @
6ab47db1
...
...
@@ -25,14 +25,17 @@ import javax.servlet.ServletResponse;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponseWrapper
;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.springframework.boot.context.embedded.ErrorPage
;
import
org.springframework.boot.test.OutputCapture
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.mock.web.MockFilterChain
;
import
org.springframework.mock.web.MockFilterConfig
;
import
org.springframework.mock.web.MockHttpServletRequest
;
import
org.springframework.mock.web.MockHttpServletResponse
;
import
static
org
.
hamcrest
.
Matchers
.
containsString
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
import
static
org
.
hamcrest
.
Matchers
.
is
;
import
static
org
.
hamcrest
.
Matchers
.
nullValue
;
...
...
@@ -61,6 +64,9 @@ public class ErrorPageFilterTests {
private
MockFilterChain
chain
=
new
MockFilterChain
();
@Rule
public
OutputCapture
output
=
new
OutputCapture
();
@Test
public
void
notAnError
()
throws
Exception
{
this
.
filter
.
doFilter
(
this
.
request
,
this
.
response
,
this
.
chain
);
...
...
@@ -359,4 +365,38 @@ public class ErrorPageFilterTests {
verify
(
committedResponse
,
times
(
0
)).
flushBuffer
();
}
@Test
public
void
errorMessageForRequestWithoutPathInfo
()
throws
IOException
,
ServletException
{
this
.
request
.
setServletPath
(
"/test"
);
this
.
filter
.
addErrorPages
(
new
ErrorPage
(
"/error"
));
this
.
chain
=
new
MockFilterChain
()
{
@Override
public
void
doFilter
(
ServletRequest
request
,
ServletResponse
response
)
throws
IOException
,
ServletException
{
super
.
doFilter
(
request
,
response
);
throw
new
RuntimeException
();
}
};
this
.
filter
.
doFilter
(
this
.
request
,
this
.
response
,
this
.
chain
);
assertThat
(
this
.
output
.
toString
(),
containsString
(
"request [/test]"
));
}
@Test
public
void
errorMessageForRequestWithPathInfo
()
throws
IOException
,
ServletException
{
this
.
request
.
setServletPath
(
"/test"
);
this
.
request
.
setPathInfo
(
"/alpha"
);
this
.
filter
.
addErrorPages
(
new
ErrorPage
(
"/error"
));
this
.
chain
=
new
MockFilterChain
()
{
@Override
public
void
doFilter
(
ServletRequest
request
,
ServletResponse
response
)
throws
IOException
,
ServletException
{
super
.
doFilter
(
request
,
response
);
throw
new
RuntimeException
();
}
};
this
.
filter
.
doFilter
(
this
.
request
,
this
.
response
,
this
.
chain
);
assertThat
(
this
.
output
.
toString
(),
containsString
(
"request [/test/alpha]"
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment