| Class and Description |
|---|
| org.springframework.http.client.OkHttpClientHttpRequestFactory
as of Spring 5.0, in favor of OkHttp 3.x
|
| Field and Description |
|---|
| org.springframework.web.bind.annotation.CrossOrigin.DEFAULT_ALLOW_CREDENTIALS
as of Spring 5.0, in favor of using
CorsConfiguration.applyPermitDefaultValues() |
| org.springframework.web.bind.annotation.CrossOrigin.DEFAULT_ALLOWED_HEADERS
as of Spring 5.0, in favor of using
CorsConfiguration.applyPermitDefaultValues() |
| org.springframework.web.bind.annotation.CrossOrigin.DEFAULT_MAX_AGE
as of Spring 5.0, in favor of using
CorsConfiguration.applyPermitDefaultValues() |
| org.springframework.web.bind.annotation.CrossOrigin.DEFAULT_ORIGINS
as of Spring 5.0, in favor of using
CorsConfiguration.applyPermitDefaultValues() |
| Method and Description |
|---|
| org.springframework.web.bind.support.WebBindingInitializer.initBinder(WebDataBinder, WebRequest)
as of 5.0 in favor of
WebBindingInitializer.initBinder(WebDataBinder) |
| Enum Constant and Description |
|---|
| org.springframework.http.HttpStatus.DESTINATION_LOCKED |
| org.springframework.http.HttpStatus.INSUFFICIENT_SPACE_ON_RESOURCE |
| org.springframework.http.HttpStatus.METHOD_FAILURE |
| org.springframework.http.HttpStatus.MOVED_TEMPORARILY
In favor of
HttpStatus.FOUND which will be returned from HttpStatus.valueOf(302) |
| org.springframework.http.HttpStatus.REQUEST_ENTITY_TOO_LARGE
In favor of
HttpStatus.PAYLOAD_TOO_LARGE which will be returned from HttpStatus.valueOf(413) |
| org.springframework.http.HttpStatus.REQUEST_URI_TOO_LONG
In favor of
HttpStatus.URI_TOO_LONG which will be returned from HttpStatus.valueOf(414) |
| org.springframework.http.HttpStatus.USE_PROXY
due to security concerns regarding in-band configuration of a proxy
|