Commit Graph

12465 Commits (49797b11539b998fc7f8f857e05c15297e9111f6)
 

Author SHA1 Message Date
Johnny Lim 6939ff1e65 Polish
Closes gh-9330
8 years ago
Stephane Nicoll 9332a3a4ae Merge branch '1.5.x' 8 years ago
Stephane Nicoll b5709fd618 Polish
See gh-9330
8 years ago
Madhura Bhave 6f022565a5 Make SystemEnvironmentPropertySource origin aware
Closes gh-9252
8 years ago
Madhura Bhave d745b69630 Replace usages of EnvironmentTestUtils 8 years ago
Madhura Bhave 05254fe322 Deprecate EnvironmentTestUtils in favor of TestPropertyValues
Fixes gh-9253
8 years ago
Madhura Bhave 2009da6169 Clear configurationProperty from context before bind
Fixes gh-9295
8 years ago
Brian Clozel fed8c8a681 Adapt WebFlux.fn auto-config to SPR-15536
Since SPR-15536, WebFlux.fn is now configured with `@EnableWebFlux`,
along the annotated controllers. Both `RouterFunction` and Controller
instances can now live within the same application and they share
the same web infrastructure.

This commit removes the custom auto-configuration for `RouterFunction`
and relies on `@EnableWebFlux` for that.

Closes gh-9165
8 years ago
Andy Wilkinson 0bce35fef9 Upgrade to Sqlite Jdbc 3.18.0
Closes gh-9311
8 years ago
Andy Wilkinson 9c6aa3eaf0 Upgrade to Mongo Driver Reactivestreams 1.4.0
Closes gh-9310
8 years ago
Andy Wilkinson 9ca2694c86 Upgrade to Mockito 2.8.9
Closes gh-9309
8 years ago
Andy Wilkinson 23eedce868 Upgrade to Assertj 3.8.0
Closes gh-9308
8 years ago
Andy Wilkinson 6c907764bb Upgrade to Thymeleaf Layout Dialect 2.2.2
Closes gh-9307
8 years ago
Andy Wilkinson 6febc188b9 Upgrade to Hikaricp 2.6.2
Closes gh-9306
8 years ago
Andy Wilkinson f494a3bb62 Upgrade to Hazelcast 3.8.2
Closes gh-9305
8 years ago
Andy Wilkinson 37ba0f4eff Upgrade to Caffeine 2.5.1
Closes gh-9304
8 years ago
Andy Wilkinson 63b80d0d5f Merge branch '1.5.x' 8 years ago
Andy Wilkinson 7254ae84ab Upgrade to Artemis 1.5.5
Closes gh-9303
8 years ago
Andy Wilkinson d8bc4751c8 Upgrade to Undertow 1.4.15.Final
Closes gh-9302
8 years ago
Andy Wilkinson b5174bed5d Merge pull request #9291 from Mark Paluch
* gh-9291:
  Polish "Adapt to relocated packages in Spring Data Cassandra"
  Adapt to relocated packages in Spring Data Cassandra
8 years ago
Andy Wilkinson 48fb0f4ad5 Polish "Adapt to relocated packages in Spring Data Cassandra"
Closes gh-9291
8 years ago
Mark Paluch 7e8e2c486e Adapt to relocated packages in Spring Data Cassandra
See gh-9291
8 years ago
Phillip Webb 6531423519 Fix following upstream API change
Update implementations of `WebFluxConfigurer` to no longer return an
`Optional` validator.
8 years ago
Phillip Webb 05111a17b8 Polish 8 years ago
Madhura Bhave 6c629369d3 Add support for binding to immutable collection
Fixes gh-9290
8 years ago
Andy Wilkinson db9ec87b14 Merge branch '1.5.x' 8 years ago
Andy Wilkinson 7f6081318f Avoid limitation of javac's type inferencing 8 years ago
Madhura Bhave 233ef67a04 Allow nested square brackets in map key when binding
Fixes gh-3202
8 years ago
Andy Wilkinson e8170cf00d Merge branch '1.5.x' 8 years ago
Andy Wilkinson 19a61c6591 Polish 8 years ago
Andy Wilkinson bbc82cb621 Merge branch '1.5.x' 8 years ago
Andy Wilkinson 5f3088ed31 Ensure that Jetty fails to start when its thread pool is misconfigured
Previously, if Jetty's thread pool was misconfigured, the Server would
still start successfully.

When it is started, the Server examines its Connectors to determine
how many threads are required. If its thread pool does not meet the
Connectors' requirements, an IllegalStateException is thrown and the
Server fails to start. However, JettyEmbeddedServletContainer
temporarily removes the Server's Connectors while it is being started
so that requests will not be accepted until the application is ready.
This has the unwanted side-effect of causing a misconfigured thread
pool to go undetected as the Connectors' thread requirements are not
taken into consideration.

The verification of the thread pool configuration and the starting of
the Connectors is done in the Server's doStart() method which has
three steps that are of interest:

1. Verify the Server's thread pool configuration
2. Start any managed beans that have been added to the Server
3. Start the Server's Connectors.

To allow the thread pool configuration to be verified while still
preventing the Connectors from being started, the Connectors need to
be removed in step 2. This is achieved by registering a managed bean
with the Server that nulls out the Server's Connectors as part of its
doStart() method.

Closes gh-8917
8 years ago
Andy Wilkinson 6c3a27dadf Merge branch '1.5.x' 8 years ago
Andy Wilkinson f7127e5522 Ensure that closing a JarFile closes all underlying resources
Closes gh-8871
8 years ago
Andy Wilkinson 68b79da71b Merge pull request #8045 from Raja Kolli
* gh-8045:
  Polish "Use try-with-resources to close resources automatically"
  Use try-with-resources to close resources automatically
8 years ago
Andy Wilkinson d5438c299c Polish "Use try-with-resources to close resources automatically"
- Apply code formatting
- Use try-with-resources in many other places that were missed in the
  pull request

Closes gh-8045
8 years ago
rajadilipkolli 3e797c326a Use try-with-resources to close resources automatically
See gh-8045
8 years ago
Mark Paluch 291f44f5ab Remove spring-cql dependency from Reactive Cassandra starter
The spring-cql module has been merged into the spring-data-cassandra
module.

See gh-9291
8 years ago
Andy Wilkinson 9192db692b Use WebRequest rather than RequestAttributes in ErrorAttributes
This change aligns ErrorAttributes with ResponseEntityExceptionHandler
which takes a WebRequest as a parameter of its handleException method.
WebRequest extends RequestAttributes and provides access to much more
than just the request's attributes. For example request headers and
parameters are available from WebRequest.

Closes gh-7952
Closes gh-6555
8 years ago
Andy Wilkinson d6a3238e7d Start building against Spring AMQP 2.0 snapshots
See gh-9289
8 years ago
Andy Wilkinson 30333ba24d Start building against Spring Security 5.0 snapshots
See gh-9288
8 years ago
Andy Wilkinson 93d38a261f Start building against Spring Integration 5.0 snapshots
See gh-9287
8 years ago
Andy Wilkinson a57b07d8c4 Start building against Spring Data Kay snapshots
See gh-9286
8 years ago
Stephane Nicoll 4cae7eb3af Merge pull request #9227 from rokii:master
* pr/9227:
  Polish
  Display unconditional classes in auto-config endpoint
8 years ago
Stephane Nicoll 895f06fdfa Polish 8 years ago
Rocky Shang 51d4e88537 Display unconditional classes in auto-config endpoint
Closes gh-9227
8 years ago
Stephane Nicoll 9241f63d7a Merge pull request #9281 from kylinsoong:master
* pr/9281:
  Polish "Add reference to Teiid spring boot starter"
  Add reference to Teiid spring boot starter
8 years ago
Stephane Nicoll d0875e76d4 Polish "Add reference to Teiid spring boot starter"
Closes gh-9281
8 years ago
kylin eaaf1bf034 Add reference to Teiid spring boot starter
See gh-9281
8 years ago
Stephane Nicoll 8094a6409f Fix build
Spring Session's MongoDB store is no longer supported on master.
8 years ago