JETTY-1105
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@875 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
aeabc18454
commit
7605c6b1ea
|
@ -15,6 +15,7 @@ jetty-7.0.0.RC6-SNAPSHOT
|
|||
+ JETTY-1093 Request.toString throws exception when size exceeds 4k
|
||||
+ JETTY-1098 Default form encoding is UTF8
|
||||
+ JETTY-1101 Updated servlet3 continuation constructor
|
||||
+ JETTY-1105 Custom error pages aren't working
|
||||
+ 288514 AbstractConnector does not handle InterruptedExceptions on shutdown
|
||||
+ 288466 LocalConnector is not thread safe
|
||||
+ 288772 Failure to connect does not set status to EXCEPTED
|
||||
|
|
|
@ -127,7 +127,8 @@ public class WebAppContext extends ServletContextHandler
|
|||
/* ------------------------------------------------------------ */
|
||||
public WebAppContext()
|
||||
{
|
||||
super(SESSIONS|SECURITY);
|
||||
super(SESSIONS|SECURITY);
|
||||
setErrorHandler(new ErrorPageErrorHandler());
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
|
|
Loading…
Reference in New Issue