Example usage for org.springframework.boot.autoconfigure.web ErrorProperties ErrorProperties

List of usage examples for org.springframework.boot.autoconfigure.web ErrorProperties ErrorProperties

Introduction

In this page you can find the example usage for org.springframework.boot.autoconfigure.web ErrorProperties ErrorProperties.

Prototype

ErrorProperties

Source Link

Usage

From source file:com.tribuo.backend.configuration.MyErrorController.java

@Autowired
public MyErrorController(ErrorAttributes errorAttributes) {
    super(errorAttributes, new ErrorProperties());
}

From source file:org.springframework.cloud.function.web.function.FunctionEndpointInitializer.java

private DefaultErrorWebExceptionHandler errorHandler(GenericApplicationContext context) {
    context.registerBean(ErrorAttributes.class, () -> new DefaultErrorAttributes());
    context.registerBean(ErrorProperties.class, () -> new ErrorProperties());
    context.registerBean(ResourceProperties.class, () -> new ResourceProperties());
    DefaultErrorWebExceptionHandler handler = new DefaultErrorWebExceptionHandler(
            context.getBean(ErrorAttributes.class), context.getBean(ResourceProperties.class),
            context.getBean(ErrorProperties.class), context);
    ServerCodecConfigurer codecs = ServerCodecConfigurer.create();
    handler.setMessageWriters(codecs.getWriters());
    handler.setMessageReaders(codecs.getReaders());
    return handler;
}