Daniel Rohe
Daniel Rohe
Currently I'm locking at the changes and how to implement the current functionality with etcd API v3 (https://github.com/coreos/jetcd).
We at Zalando adopted our library (https://github.com/zalando/spring-cloud-config-aws-kms) to the style of Spring Cloud AWS 3.1.x with our the latest version 3.1.1.
released version 3.1.1 that builds on top of AwSpring spring-cloud-aws
The problem of the different handling for Spring Framework using ControllerAdvice and Spring Boot using ErrorAttributes. Did someone consider adding a new implementation of the ErrorAttributes interface and ErrorView class...
yes we can remove the dependency check plugin.
removed handling of MissingServletRequestPartException because similar response ``` zalando-problem status: 400 content-type: application/problem+json { "title": "Bad Request", "status": 400, "detail": "Required part 'payload2' is not present." } spring-problem status: 400...
removed handling of NoHandlerFoundException because similar response ``` zalando-problem status: 404 content-type: application/problem+json { "title":"Not Found", "status":404, "detail":"No endpoint ." } spring-problem status: content-type: application/json { "type":"about:blank", "title":"Not Found", "status":404,...
removed handling of ServletRequestBindingException which includes UnsatisfiedServletRequestParameterException, MissingRequestValueException, MissingMatrixVariableException, MissingPathVariableException, MissingRequestCookieException, MissingRequestHeaderException, because similar response ``` zalando-problem status: 400 content-type: application/problem+json { "title": "Bad Request", "status": 400, "detail": "Required request...
removed handling of MissingServletRequestParameterException because similar response ``` zalando-problem status: 400 content-type: application/problem+json { "title":"Bad Request", "status":400, "detail":"Required request parameter 'params1' for method parameter type String[] is not present" }...
removed handling of HttpRequestMethodNotSupportedException because similar response ``` zalando-problem status: 405 content-type: application/problem+json { "title":"Method Not Allowed", "status":405, "detail":"Request method 'POST' is not supported" } spring-problem status: 405 content-type: application/json...