Moritz Halbritter
b1a3dad16c
Configure virtual threads on the RabbitMQ listener
...
Closes gh-36387
2 years ago
Moritz Halbritter
eeb1e1fc35
Add VirtualThreads bean and auto-configuration
...
This bean is only in the context if virtual threads are enabled. It can
be used to get access to the virtual thread executor.
2 years ago
Moritz Halbritter
3cc9a3bb32
Remove duplicate applicationTaskExecutor bean method
...
See gh-35710
2 years ago
Moritz Halbritter
39f6b85039
Polish
2 years ago
Moritz Halbritter
9cb5763794
Add property to set changeConsumerThreadName for Kafka
...
Closes gh-36343
2 years ago
Moritz Halbritter
49ae8c0998
Auto-configure Kafka's threadNameSupplier
...
Closes gh-36344
2 years ago
Stephane Nicoll
b0438b0f03
Polish "Allow custom RSocket WebsocketServerSpecs to be defined"
...
See gh-29567
2 years ago
Leo Li
f840141652
Allow custom RSocket WebsocketServerSpecs to be defined
...
See gh-29567
2 years ago
Stephane Nicoll
54066791f9
Polish "Add RabbitMQ container forceStop property"
...
See gh-36539
2 years ago
Gary Russell
8b716a2f6c
Add RabbitMQ container forceStop property
...
See gh-36539
2 years ago
Johnny Lim
96c9915f12
Polish
...
See gh-36565
2 years ago
Andy Wilkinson
b476d368db
Polish "Make HikariDataSource participate in checkpoint-restore"
...
See gh-36422
2 years ago
Christoph Strobl
9240f971fb
Make HikariDataSource participate in checkpoint-restore
...
See gh-36422
2 years ago
Andy Wilkinson
14d2675aab
Add `@ConditionalOnCheckpointRestore`
...
Closes gh-36536
2 years ago
Moritz Halbritter
6050fff078
Auto-configure observability for R2DBC
...
The new ConnectionFactoryDecorator can be used to decorate the
ConnectionFactory built by the ConnectionFactoryBuilder.
The new R2dbcObservationAutoConfiguration configures a
ConnectionFactoryDecorator to attach a ObservationProxyExecutionListener
to ConnectionFactories. This enables Micrometer Observations for R2DBC
queries.
Closes gh-33768
2 years ago
Stephane Nicoll
854c162966
Polish "Fail fast if job name does not exist"
...
See gh-36060
2 years ago
Akshay Dubey
c38cd74542
Fail fast if job name does not exist
...
See gh-36060
2 years ago
Stephane Nicoll
73cc54ad34
Prevent PostConstruct to be used in production code
...
Closes gh-36528
2 years ago
Christoph Dreis
343c9c6f7e
Remove references to Atomikos and Bitronix
...
See gh-35562
2 years ago
Andy Wilkinson
5a0f1bbe9b
Polish "Correct description of overrides for spring.redis.url"
...
See gh-36477
2 years ago
Johnny Lim
1effd3723f
Correct description of overrides for spring.redis.url
...
See gh-36477
2 years ago
Andy Wilkinson
3affb3342e
Deprecate auto-configuration for InfluxDB
...
Closes gh-35190
2 years ago
Stephane Nicoll
311fa6272d
Polish "Add service connection for Testcontainers ActiveMQ"
...
This also adds support for Docker Compose.
See gh-35080
2 years ago
Eddú Meléndez
63121dd08a
Add service connection for Testcontainers ActiveMQ
...
See gh-35080
2 years ago
Moritz Halbritter
54e99d68fa
Auto-configure ObservationRegistry on ScheduledTaskRegistrar
...
The TaskSchedulingAutoConfiguration.taskScheduler auto-configuration now
no longer backs off on SchedulingConfigurer beans.
Closes gh-36119
2 years ago
Andy Wilkinson
fe123e5b10
Fix handling of additional-hosts with Mongo
...
Closes gh-36441
2 years ago
Andy Wilkinson
283dc37db3
Make AnnotatedControllerConfigurer use applicationTaskExecutor
...
Closes gh-36388
2 years ago
Stephane Nicoll
c6e47b86d7
Move Flyway configuration extension properties to dedicated namespace
...
This commit harmonizes the handling of ConfigurationExtension for
Flyway. The existing Oracle and SQLServer extensions are now mapped from
flway.oracle and flyway.sqlserver, respectively. The existing properties
have been deprecated in favor of the new location.
Closes gh-36444
2 years ago
Stephane Nicoll
8da706603e
Add support for flyway.postgresql.transactional.lock
...
Closes gh-32629
2 years ago
Stephane Nicoll
71406977c2
Harmonize configuration of Flyway SQL Server extension
...
Closes gh-36440
2 years ago
Stephane Nicoll
fb640c04e7
Upgrade to Flyway 9.20.1
...
Closes gh-36364
Co-authored-by: Andy Wilkinson <wilkinsona@vmware.com>
2 years ago
Andy Wilkinson
d205d10519
Configure WebFlux's blocking execution to use applicationTaskExecutor
...
Closes gh-36331
2 years ago
Johnny Lim
9b38db6672
Polish PemSslBundleProperties
...
See gh-36281
2 years ago
Andy Wilkinson
f33874e98e
Allow auto-configured applicationTaskExecutor to use virtual threads
...
With this commit, when virtual threads are enabled, the auto-configured
applicationTaskExecutor changes from a ThreadPoolTaskExecutor to a
SimpleAsyncTaskExecutor with virtual threads enabled.
As before, any TaskDecorator bean is applied to the auto-configured
executor and the spring.task.execution.thread-name-prefix property is
applied. Other spring.task.execution.* properties are ignored as they
are specific to a pool-based executor.
Closes gh-35710
2 years ago
Stephane Nicoll
d2912c6442
Update copyright year of changed files
...
See gh-36306
2 years ago
Christoph Dreis
8321887d6a
Fix typos
...
See gh-36306
2 years ago
Pengfei-Lu
8697d9ddd5
Correct conditions on auto-configured JacksonJsonpMapper
...
See gh-36109
Signed-off-by: Pengfei-Lu <459360594@qq.com>
2 years ago
Andy Wilkinson
0d06747b41
Fix problem with @ and : chars in Mongo username and password
...
Fixes gh-36261
2 years ago
Andy Wilkinson
3b90919313
Polish RestClient auto-config and tests
...
For consistency, replace webClient and WebClient with restClient and
RestClient. This also address a bean name clash between
RestClientAutoConfiguration's RestClient.Builder bean and
WebClientAutoConfiguration's WebClient.Builder bean that were both
previously named webClientBuilder.
2 years ago
Spencer Gibb
89880a773c
Add RestClientAutoConfiguration to AutoConfiguration.imports
...
See gh-36249
2 years ago
Phillip Webb
cfdc173e34
Add RestClient SSL support
...
Add `RestClientSsl` support class to help apply an `SslBundle` to a
`RestClient.Builder`.
See gh-36213
2 years ago
Phillip Webb
5e01c66552
Add RestClient HttpMessageConverters support
...
Update `RestClientAutoConfiguration` to apply `HttpMessageConverters`
configuration.
See gh-36213
2 years ago
Phillip Webb
2d2f050262
Polish 'Add initial support for RestClient'
...
See gh-36213
2 years ago
Arjen Poutsma
a1a5acf128
Add initial support for RestClient
...
Introduce initial support for Spring Framework's `RestClient`, in the
form of a `RestClientCustomizer` and `RestClientAutoConfiguration`.
See gh-36213
2 years ago
Andy Wilkinson
4feaa28fd1
Polish "Support custom token validators for OAuth2"
...
See gh-35874
2 years ago
Roman Golovin
7500dab321
Support custom token validators for OAuth2
...
See gh-35874
2 years ago
Andy Wilkinson
2350d9c870
Adapt to Data changes missed due to predictive test selection
...
See gh-36190
3 years ago
Andy Wilkinson
5a9ca67fba
Start building against Spring Framework 6.2.0-M2 snapshots
...
See gh-36198
3 years ago
Andy Wilkinson
ec8e1e2c95
Start building against Spring Data Bom 2023.1.0 snapshots
...
See gh-36190
3 years ago
Phillip Webb
b6990940b1
Polish 'Choose SAML party based on entity ID rather than always using first'
...
See gh-35902
3 years ago