Make ErrorPageFilter public
Change the visibility of ErrorPageFilter to public to fix IllegalAccessException errors on certain servlet containers. Fixes gh-2026
This commit is contained in:
parent
49858a0ff1
commit
b519eda441
|
|
@ -56,8 +56,8 @@ import org.springframework.web.filter.OncePerRequestFilter;
|
||||||
*/
|
*/
|
||||||
@Component
|
@Component
|
||||||
@Order(Ordered.HIGHEST_PRECEDENCE)
|
@Order(Ordered.HIGHEST_PRECEDENCE)
|
||||||
class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer implements
|
public class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer
|
||||||
Filter, NonEmbeddedServletContainerFactory {
|
implements Filter, NonEmbeddedServletContainerFactory {
|
||||||
|
|
||||||
private static Log logger = LogFactory.getLog(ErrorPageFilter.class);
|
private static Log logger = LogFactory.getLog(ErrorPageFilter.class);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue