@Bean TestErrorController testErrorController(ErrorAttributes errorAttributes, Tracer tracer) { return new TestErrorController(errorAttributes, tracer); }
public TestErrorController(ErrorAttributes errorAttributes, Tracer tracer) { super(errorAttributes, new ServerProperties().getError()); this.tracer = tracer; }
@Bean public MyErrorController myErrorController(ErrorAttributes errorAttributes) { return new MyErrorController(errorAttributes); }
@Bean public ZuulProxyTestBase.MyErrorController myErrorController( ErrorAttributes errorAttributes) { return new ZuulProxyTestBase.MyErrorController(errorAttributes); }
public MyErrorController(ErrorAttributes errorAttributes) { super(errorAttributes, new ErrorProperties()); }