Make ErrorPageFilter public

Change the visibility of ErrorPageFilter to public to fix
IllegalAccessException errors on certain servlet containers.

Fixes gh-2026
pull/2707/head
Phillip Webb 10 years ago
parent 49858a0ff1
commit b519eda441

@ -56,8 +56,8 @@ import org.springframework.web.filter.OncePerRequestFilter;
*/
@Component
@Order(Ordered.HIGHEST_PRECEDENCE)
class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer implements
Filter, NonEmbeddedServletContainerFactory {
public class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer
implements Filter, NonEmbeddedServletContainerFactory {
private static Log logger = LogFactory.getLog(ErrorPageFilter.class);

Loading…
Cancel
Save