Commit Graph

21791 Commits (e06325e0296eb2c3d9a762fafa9dfa90117d47cf)
 

Author SHA1 Message Date
Phillip Webb e06325e029 Merge branch '2.1.x' 6 years ago
Phillip Webb 930d110178 Merge branch '2.0.x' into 2.1.x 6 years ago
Phillip Webb 90468c4d53 Fix checkstyle violation in OAuth sample 6 years ago
Phillip Webb d306b31ce9 Merge branch '2.1.x' 6 years ago
Phillip Webb ccfbd03482 Merge branch '2.0.x' into 2.1.x 6 years ago
Phillip Webb b442d3b906 Merge branch '1.5.x' into 2.0.x 6 years ago
Phillip Webb 80d8a5cfa2 Add nohttp checkstyle rule
Closes gh-16682
6 years ago
Phillip Webb 72268a266b Switch livereload links to https 6 years ago
Phillip Webb cd537155a9 Use https for Thymeleaf xmlns:layout 6 years ago
Phillip Webb a99131f727 Polish resource files to all end with a new line 6 years ago
Phillip Webb 5fba43aa31 Merge branch '1.5.x' into 2.0.x 6 years ago
Phillip Webb e61f7a33a7 Add nohttp checkstyle rule
Closes gh-16682
6 years ago
Phillip Webb e79c2cc8a7 Switch livereload links to https 6 years ago
Phillip Webb 0049f1985c Use https for Thymeleaf xmlns:layout 6 years ago
Phillip Webb 32068c21a3 Polish resource files to all end with a new line 6 years ago
Phillip Webb 2b51cf442e Merge pull request #16972 from kstrijbos
* pr/16972:
  Polish "Make it easier to set bufferRequestBody"
  Make it easier to set bufferRequestBody

Closes gh-16972
6 years ago
Phillip Webb af1a6d8649 Polish "Make it easier to set bufferRequestBody"
See gh-16972
6 years ago
kevinstrijbos 9f06514b89 Make it easier to set bufferRequestBody
Update `RestTemplateBuilder` to make it easier to set
the `bufferRequestBody` value on a underlying `ClientHttpRequestFactory`

See gh-16972
6 years ago
Phillip Webb 750d251ae8 Update JsonComponent documentation
See gh-16544
6 years ago
Brian Clozel c74badd4f2 Auto-configure Elasticsearch REST client in Spring Data
This commit auto-configures the Elasticsearch REST client support
as a template for Spring Data Elasticsearch. As of this commit,
using the transport client is still possible but developers
should migrate.

This commit also removes the deprecated annotation on the
Elasticsearch auto-configuration for the transport client, since
this deprecation notice is already present on the configuration
property.

Closes gh-17024
Closes gh-16542
6 years ago
Stephane Nicoll ae5b5be597 Reset flag after each test as well to avoid side effects 6 years ago
Stephane Nicoll f30e29a4ad Rename spring.reactor.stacktrace-mode.enabled property
Closes gh-16537
6 years ago
Stephane Nicoll 090cc05e7a Add missing metadata for "spring.profiles"
Closes gh-16107
6 years ago
Stephane Nicoll 8beb6c1bcb Document how to specify arguments on the command line with Maven
Closes gh-10926
6 years ago
Stephane Nicoll 684d5a838c Merge pull request #17034 from garyrussell
* pr/17034:
  KafkaAutoConfigurationIntegrationTests to JUnit5

Closes gh-17034
6 years ago
Gary Russell 23cff6fb09 KafkaAutoConfigurationIntegrationTests to JUnit5
See gh-17034
6 years ago
Phillip Webb f9f6544d06 Merge pull request #16544 from maly7
* pr/16544:
  Polish "Support JsonComponent key serializers/deserialzers"
  Support JsonComponent key serializers/deserialzers

Closes gh-16544
6 years ago
Phillip Webb bf633fc575 Polish "Support JsonComponent key serializers/deserialzers"
See gh-16544
6 years ago
maly7 361efc7c11 Support JsonComponent key serializers/deserialzers
Update `@JsonComponent` so that it can also be used to register key
serializers and deserializers.

See gh-16544
6 years ago
Phillip Webb 063bb907a4 Merge pull request #16987 from dreis2211
* pr/16987:
  Polish "Avoid using deprecated NCSARequestLog"
  Avoid using deprecated NCSARequestLog

Closes gh-16987
6 years ago
Phillip Webb 14349518c9 Polish "Avoid using deprecated NCSARequestLog"
See gh-16987
6 years ago
dreis2211 4af3badbea Avoid using deprecated NCSARequestLog
See gh-16987
6 years ago
Stephane Nicoll 7755f892a4 Merge pull request #17044 from wonwoo
* pr/17044:
  Polish "Fix typo in javadoc"
  Fix typo in javadoc

Closes gh-17044
6 years ago
Stephane Nicoll 6a78995d61 Polish "Fix typo in javadoc"
See gh-17044
6 years ago
fidel 2ec0996a6f Fix typo in javadoc
See gh-17044
6 years ago
Phillip Webb 9ad19349f4 Merge pull request #16671 from izeye
* pr/16671:
  Polish defaultElementEquals
  Polish dashIgnoringElementEquals()

Closes gh-16671
6 years ago
Phillip Webb 763d18ca68 Polish defaultElementEquals
See gh-16671
6 years ago
Johnny Lim a89e6ff67c Polish dashIgnoringElementEquals()
See gh-16671
6 years ago
Phillip Webb ec72d2874c Merge pull request #17040 from wonwoo
* pr/17040:
  Polish "Replace anonymous class with lambdas"
  Replace anonymous class with lambdas

Closes gh-17040
6 years ago
Phillip Webb 114f9f9503 Polish "Replace anonymous class with lambdas"
See gh-17040
6 years ago
fidel 46677e30cf Replace anonymous class with lambdas
See gh-17040
6 years ago
Phillip Webb 0fcc561163 Update copyright header of changed files 6 years ago
Phillip Webb f56386edcd Merge pull request #17010 from nosan
* pr/17010:
  Polish "Use request factory to support Basic Authentication"
  Use request factory to support Basic Authentication

Closes gh-17010
6 years ago
Phillip Webb 76e075ddd0 Polish "Use request factory to support Basic Authentication"
Reduce the surface area of the public API by making the
`BasicAuthentication` and `BasicAuthenticationClientHttpRequestFactory`
class package private.

This commit also attempts to simplify `TestRestTemplate` by keeping
the `RestTemplateBuilder` and reusing it, rather than needing to deal
only with a `RestTemplate` instance.

See gh-17010
6 years ago
Dmytro Nosan 18a0a7a2e8 Use request factory to support Basic Authentication
Update `RestTemplateBuilder` to use a custom request factory to add
authentication headers rather than an interceptor.

Prior to this commit, the use of the `BasicAuthenticationInterceptor`
interceptor could cause `OutOfMemoryError` whenever a large file is
uploaded.

See gh-17010
6 years ago
Issam El-atif 4ac1407af1 Use new JettyClientHttpConnector constructor
Simplify `ClientHttpConnectorConfiguration`by using the recently
introduced `JettyClientHttpConnector` constructor.

See gh-17015
6 years ago
Madhura Bhave 898a903d2f Fix typos in javadoc 6 years ago
Phillip Webb 4b2fdee3fc Polish 6 years ago
Andy Wilkinson 0644a79401 Repackage output capture and always use extension declaratively
Closes gh-17029
6 years ago
Phillip Webb d11d5ceb29 Split up JUnit 5 OutputCapture class
Split the JUnit 5 `OutputCapture` class into separate `OutputExtension`
and `CapturedOutput` classes. The JUnit 5 callback methods are now
contained only in the `OutputExtension` class so no longer pollute the
public API that users will interact with.

The `CapturedOutput` class has also been updated to capture System.err
and System.out separately to allow distinct assertions if required.

Closes gh-17029
6 years ago