Andy Wilkinson
c8b849e2f6
Merge branch '2.5.x' into 2.6.x
...
Closes gh-30018
3 years ago
Andy Wilkinson
355f80ab98
Add links to Spring Boot for Apache Geode and its documentation
...
Closes gh-29697
3 years ago
Moritz Halbritter
7897a913a7
Start building against Micrometer 1.9.0-M4 snapshots
...
Micrometer duplicated the binders in a separate module named
micrometer-binders, and marked the binders in the core module as
deprecated. This commit changes the imports to use the new binders in
the micrometer-binders module. Additionally, the auto-configurations
honor user-supplied beans which use the old binders in the
micrometer-core module.
See gh-30014
3 years ago
Andy Wilkinson
7dc40e95d2
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
664ecbdcc1
Polish "Add DataCouchbaseTest annotation"
...
See gh-29912
3 years ago
Eddú Meléndez
36e52758a7
Add DataCouchbaseTest annotation
...
See gh-29912
3 years ago
Andy Wilkinson
4093fff225
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
53292a1f94
Polish "Add DataElasticsearchTest annotation"
...
See gh-29911
3 years ago
Eddú Meléndez
e22f78bc6a
Add DataElasticsearchTest annotation
...
See gh-29911
3 years ago
Phillip Webb
5454e2e26a
Merge branch '2.7.x'
3 years ago
Phillip Webb
9f00c3acf5
Polish
3 years ago
Madhura Bhave
f9d33ec1e2
Merge branch '2.7.x' into main
3 years ago
Madhura Bhave
0ecf43dbe2
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29979
3 years ago
Madhura Bhave
894860c177
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29978
3 years ago
Madhura Bhave
cc95f734d7
Clarify relation of import path to resultant properties in configtree import data
...
Closes gh-29606
3 years ago
Stephane Nicoll
c8b7a17545
Upgrade to Spring Kafka 2.8.3
...
Closes gh-29722
3 years ago
Madhura Bhave
060979d987
Merge branch '2.7.x' into main
3 years ago
Madhura Bhave
64b8610c2e
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29960
3 years ago
Madhura Bhave
880db30c67
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29959
3 years ago
Madhura Bhave
a70fa80571
Rectify incorrect sanitizing regex example provided in how-to docs
...
Closes gh-29951
3 years ago
Stephane Nicoll
f85ad61753
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
d4db26dcc1
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29935
3 years ago
Stephane Nicoll
db26aff792
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29934
3 years ago
UbaidurRehman1
7b48c51689
Clarify that any property of the environment can be used in a banner
...
See gh-29931
3 years ago
Moritz Halbritter
d42f675959
Merge branch '2.7.x'
3 years ago
Moritz Halbritter
d7b229d3c7
Rename AutoConfigurationLoader to ImportCandidates
...
Move the class to a more suitable package, and load the files from
META-INF/spring/<fqn>.imports
See gh-29872
3 years ago
Moritz Halbritter
829ff4d03f
Merge branch '2.7.x'
3 years ago
Moritz Halbritter
2afa02c856
Fix missing test slice configuration
...
Test slices are now longer registered in spring.factories, but
TestSliceMetadata still looked there for them to generate documentation.
Fixed this so that TestSliceMetadata now looks in the right places for
test slices.
See gh-29873
3 years ago
Moritz Halbritter
ec31278f1e
Add Moritz to the doc authors list
3 years ago
Moritz Halbritter
303979fb65
Merge branch '2.7.x'
3 years ago
Moritz Halbritter
7d68b58c8f
Load auto-configurations from META-INF/spring-boot
...
Implements a new AutoConfigurationLoader, which loads
auto-configurations from a file in META-INF/spring-boot.
Adapts the AutoConfigurationImportSelector to use the new loader.
Adapts the ImportAutoConfigurationImportSelector to use the new loader.
Adapts the metadata plugin in the build to additionally load the
auto-configurations from the new file.
Updates the documentation for auto-configurations and test slices.
Closes gh-29872
3 years ago
Phillip Webb
ff4b92a3ba
Update copyright year of changed files
3 years ago
Phillip Webb
0bf7cda230
Merge branch '2.7.x'
3 years ago
Phillip Webb
a40637cb6d
Merge branch '2.6.x' into 2.7.x
3 years ago
Phillip Webb
560d576a02
Polish
3 years ago
Phillip Webb
f4b849ec95
Merge branch '2.7.x'
3 years ago
Phillip Webb
26512f8ac6
Merge branch '2.6.x' into 2.7.x
3 years ago
Phillip Webb
5b4ec32645
Merge branch '2.5.x' into 2.6.x
3 years ago
Phillip Webb
c86b1330cf
Update copyright year of changed files
3 years ago
Phillip Webb
9ab1b669d0
Polish
3 years ago
Madhura Bhave
bf1ed5f2f8
Update copyright header on changed files
3 years ago
Madhura Bhave
e20ee87b5d
Remove explicit @ConstructorBinding on type
...
See gh-23216
3 years ago
Madhura Bhave
44b88cc88c
Allow @ConstructorBinding to be optional
...
This commit makes @ConstructorBinding optional for a type
that has a single parameterized constructor. An @Autowired annotation
on any of the constructors indicates that the type should not be constructor
bound.
Since @ConstructorBinding is now deduced for a single parameterized constructor,
the annotation is no longer needed at the type level.
Closes gh-23216
3 years ago
Moritz Halbritter
fdb1010cbc
Migrate auto-configurations to @AutoConfiguration
...
Closes gh-29871
3 years ago
Moritz Halbritter
8e99788fc8
Migrate auto-configurations to @AutoConfiguration
...
Closes gh-29871
3 years ago
Moritz Halbritter
cb08065ece
Merge branch '2.7.x'
3 years ago
Moritz Halbritter
100f80d073
Add @AutoConfiguration annotation
...
This annotation can be used to mark auto-configurations with a dedicated
annotation. Under the hood, it's a standard @Configuration with
proxyBeanMethods set to false.
Closes gh-29870
3 years ago
Andy Wilkinson
638b5a9256
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
15f4b6c263
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29808
3 years ago
Andy Wilkinson
64e24a0e11
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29807
3 years ago
dreis2211
39394b9c2b
Link to Integration section of the appendix for Kafka properties
...
See gh-29758
3 years ago
Henning Poettker
7d83dfc0c7
Reinstate support for H2 Console
...
See gh-29755
Closes gh-29755
3 years ago
Stephane Nicoll
15e14e23c9
Start building against Spring Kafka 2.8.3 snapshots
...
See gh-29759
3 years ago
Andy Wilkinson
2dcd5e12ce
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
76510fae48
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29752
3 years ago
Andy Wilkinson
09f51f38d6
Update docs to reflect use of CamelCaseToUnderscoresNamingStrategy
...
Closes gh-29743
3 years ago
Moritz Halbritter
44beceffaf
Merge branch '2.7.x'
3 years ago
Moritz Halbritter
96ce8d842e
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29729
3 years ago
Moritz Halbritter
44ff29c4d4
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29728
3 years ago
Moritz Halbritter
096ba72a39
Add documentation for WebMvc.fn
...
See gh-29683
3 years ago
Andy Wilkinson
067a8dd3ec
Raise the minimum supported version of Gradle to 7.4
...
Closes gh-29674
3 years ago
Andy Wilkinson
819f40f81e
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
e4b074f07b
Merge branch '2.6.x' into 2.7.x
3 years ago
Andy Wilkinson
f672a20f90
Polish appendix cross-references
...
See gh-29689
3 years ago
Andy Wilkinson
3b5e7ee0a8
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
7e8d499333
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29690
3 years ago
Andy Wilkinson
093e8a524d
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29689
3 years ago
Moritz Halbritter
52d9ba58d8
Move appendix subsections under appendix section
...
This involved a small code change to the generated configuration
properties snippets. The section id has to start with
'appendix.', otherwise the section-id asciidoctor extension
complains. To ensure that the anchors that are derived from the
section IDs remain backwards compatible, the anchor-rewrite
properties have been updated.
See gh-29667
3 years ago
Phillip Webb
ce6b12a024
Merge branch '2.7.x'
3 years ago
Phillip Webb
26dd6b826c
Merge branch '2.6.x' into 2.7.x
3 years ago
Phillip Webb
b3a82c9de6
Merge branch '2.5.x' into 2.6.x
3 years ago
Phillip Webb
52f1799c20
Polish formatting
3 years ago
Stephane Nicoll
3b4832445b
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
098a57affb
Upgrade to R2DBC Borca-RELEASE
...
See gh-28524
3 years ago
Andy Wilkinson
977a0a8356
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
2fec7b8562
Only use Kotlin 1.6 API and language versions in docs project
...
To preserve our existing Kotlin 1.3 baseline, we should compile our
Kotlin code with Kotlin 1.3 API and language versions. At the same
time, we want our documentation to use modern Kotlin. This commit
restores the 1.3 convention and overrides it to 1.6 in the docs
project. This maintains our Kotlin 1.3 baseline while also allowing
the Kotlin code examples to use 1.6 API and language features.
Closes gh-29654
3 years ago
Phillip Webb
4f8558f568
Upgrade Kotlin docs samples to Jakarta EE 9
...
See gh-29499
3 years ago
Phillip Webb
a3615f4f77
Merge branch '2.7.x'
3 years ago
Phillip Webb
d212243eef
Polish 'Add Kotlin alternatives to Java documentation samples'
...
See gh-29499
3 years ago
Pavel Semyonov
197afff1d6
Add Kotlin alternatives to Java documentation samples
...
See gh-29499
3 years ago
Phillip Webb
a301d8ed5d
Merge branch '2.7.x'
3 years ago
Phillip Webb
0e906dc6e2
Use convention based code imports
...
Closes gh-29647
3 years ago
Phillip Webb
a6b7ae2110
Merge branch '2.7.x'
3 years ago
Phillip Webb
71695d2162
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29658
3 years ago
Phillip Webb
05c58a18df
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29657
3 years ago
Phillip Webb
12a33a2eaf
Upgrade to spring-asciidoctor-backends 0.0.3
...
Closes gh-29656
3 years ago
Phillip Webb
50047e6d8c
Merge branch '2.7.x'
3 years ago
Phillip Webb
6c74e24147
Update copyright year of changed files
3 years ago
Phillip Webb
b9e037b88f
Polish
3 years ago
Phillip Webb
0083b767e6
Merge branch '2.7.x'
3 years ago
Phillip Webb
4919683354
Use consistent packages for doc samples
...
Closes gh-29646
3 years ago
Phillip Webb
a282f912e6
Organize imports
...
Organize imports according to updated checkstyle rules.
3 years ago
Phillip Webb
501d174db0
Merge branch '2.7.x'
3 years ago
Phillip Webb
ce08b519b1
Merge branch '2.6.x' into 2.7.x
3 years ago
Phillip Webb
50e0e28155
Merge branch '2.5.x' into 2.6.x
3 years ago
Phillip Webb
5975cdc5ed
Polish formatting
3 years ago
Andy Wilkinson
f88b502f7e
Remove support for image banners
...
Closes gh-28883
3 years ago
Stephane Nicoll
e749f30642
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
9028ab33f2
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29617
3 years ago
Stephane Nicoll
d130819fb4
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29616
3 years ago
Stephane Nicoll
5fe6176966
Polish "Add a note on early init with @ConditionalOnExpression"
...
See gh-29276
3 years ago
Mihail Cornescu
fce3cd1684
Add a note on early init with @ConditionalOnExpression
...
See gh-29276
3 years ago
Stephane Nicoll
3a65d7b01e
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
19e671dd7b
Merge branch '2.6.x' into 2.7.x
3 years ago
Stephane Nicoll
787a2f3d9b
Merge branch '2.5.x' into 2.6.x
3 years ago
Stephane Nicoll
ab0b29cb53
Polish "Make classloader customization easier to discover"
...
See gh-29438
3 years ago
Andreas Ahlenstorf
96f48db2ab
Make classloader customization easier to discover
...
See gh-29438
3 years ago
Andy Wilkinson
191333773f
Restore support for REST Assured
...
Closes gh-29543
3 years ago
Stephane Nicoll
5c78c2288c
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
f9029a3584
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29540
3 years ago
Stephane Nicoll
e36a56f014
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29539
3 years ago
Axel Fontaine
48817587e6
Rename Boxfuse to CloudCaptain
...
See gh-29523
3 years ago
Stephane Nicoll
83e2ffe45c
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
ba8c76ba08
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29538
3 years ago
Stephane Nicoll
267cd45235
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29537
3 years ago
Janne Valkealahti
d821f86b8e
Upgrade reference of gradle-git-properties to 2.3.2
...
See gh-29535
3 years ago
Andy Wilkinson
f025ab629a
Switch to new coordinates for Git Commit ID Maven Plugin
...
Closes gh-29515
3 years ago
Andy Wilkinson
91060a94d4
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
6fa4b942ee
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29481
3 years ago
Andy Wilkinson
52f612b3eb
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29480
3 years ago
Andy Wilkinson
9cb66d55d1
Refer to Maven Resolver rather than Aether
...
Closes gh-29255
3 years ago
Andy Wilkinson
26fecbe230
Upgrade to Thymeleaf and Security Extras 3.1.0-M1
...
Closes gh-49452
Closes gh-49453
3 years ago
Andy Wilkinson
12cd97a20c
Reinstate support for Thymeleaf
3 years ago
Andy Wilkinson
d60da1cc59
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
b67cc62c37
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29402
3 years ago
Andy Wilkinson
d29a5a2f43
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29401
3 years ago
Andy Wilkinson
e8cbec0836
Clarify documentation of RestTemplate customization
...
Closes gh-29394
3 years ago
Andy Wilkinson
15dafebe0d
Polish "Avoid split java.xml packages that cause JDT compile errors"
...
See gh-29389
3 years ago
Dave Syer
32a6c7df49
Avoid split java.xml packages that cause JDT compile errors
...
Without this change I get compiler errors from JDT in the IDE
(VSCode). It seems to be harmless from the point of view of the
command line build with the JDK.
See gh-29389
3 years ago
Andy Wilkinson
a79cba129f
Remove faulty javadoc styling
...
The styling does not work with Java 17-generated javadoc. Following
Spring Framework's lead, this commit removes the custom styling.
See gh-28101
3 years ago
Stephane Nicoll
9a9cfa78c8
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
77a9d0b6f1
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29381
3 years ago
Omkar Shetkar
c19e192acd
Fix duplicate "Logging" link
...
See gh-29380
3 years ago
Stephane Nicoll
90b8d2190f
Adapt to latest change in Spring Data Elasticsearch
3 years ago
Stephane Nicoll
8ec8268a77
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
c02faea9c9
Allow WebMvcFilter to be overridden by user configuration
...
Closes gh-28428
3 years ago
Brian Clozel
b17412eb38
Fix Auto-configured Spring GraphQL Tests docs
...
Prior to this change, the reference docs would point to "spring-webflux"
as the required additional testing dependency to get
`WebGraphQlTester` support in Spring Boot tests.
While this is enough for `WebEnvironment.MOCK` tests, we need an actual
HTTP client for `WebEnvironment.RANDOM_PORT` tests. This commit amends
this part of the documentation to recommend the
"spring-boot-starter-webflux" dependency in all cases.
Fixes gh-29250
3 years ago
Stephane Nicoll
5f67546534
Adapt to latest API change in SD Elasticsearch
...
See gh-29292
3 years ago
Stephane Nicoll
9e27bddfc7
Start building against Spring Data 2021.2.0-M1 snapshots
...
This commit also upgrades to Elasticsearch 7.16.2
See gh-29223
See gh-29292
3 years ago
Andy Wilkinson
894f83fb13
Upgrade to Artemis 2.20.0 and switch to Jakarta EE 9 JMS API
...
Closes gh-29203
3 years ago
Andy Wilkinson
89e79e826e
Reinstate support for Apache Artemis
...
See gh-29203
3 years ago
Stephane Nicoll
c62aa0deab
Remove support for Hazelcast 3
...
Closes gh-29287
3 years ago
Stephane Nicoll
025fe4fd43
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
a780e87e9c
Upgrade to Hazelcast 5.0.2
...
See gh-29265
3 years ago
Andy Wilkinson
35b32bb3ff
Update Javadoc to link to Java SE 17 and Jakarta EE 9
...
Closes gh-29277
3 years ago
Andy Wilkinson
c2e86096cd
Reinstate support for jOOQ as it now supports Jakarta EE 9
...
Closes gh-29271
3 years ago
Phillip Webb
06398eabed
Merge branch '2.7.x'
3 years ago
Andy Wilkinson
1dbfcf8b57
Reinstate support for Spring Data Couchbase
...
Closes gh-28976
3 years ago
Stephane Nicoll
e2f274f01d
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
9b34c31916
Polish "Include AbstractJdbcConfiguration beans in @DataJdbcTest"
...
See gh-29003
3 years ago
Stephane Nicoll
abb622023d
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
d24720d958
Polish "Expose OS information as an InfoContributor"
...
See gh-28907
3 years ago
Jonatan Ivanov
c700f686c6
Expose OS information as an InfoContributor
...
See gh-28907
3 years ago
Stephane Nicoll
64062adf0d
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
e1a5be83d2
Polish "Inject SpringManagedContext into Hazelcast configuration"
...
See gh-28801
3 years ago
Brian Clozel
c5817f21eb
Add property for disabling GraphQL schema introspection
...
Prior to this commit, the GraphQL schema assembled by the
auto-configuration would provide no option for disabling the field
introspection.
While this feature is essential for many tools (including GraphiQL),
some prefer disabling it because this allows clients to gather
information about types and schema easily. This commit introduces a new
`spring.graphql.schema.introspection.enabled` configuration property.
Because potential attackers can still gather this information and this
feature is a core concern in the GraphQL spec, introspection is enabled
by default for Spring Boot applications.
Closes gh-29248
3 years ago
izeye
728206dba0
Polish GraphQL changes
...
See gh-29140
Closes gh-29194
3 years ago
Stephane Nicoll
5864c300e0
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
6b6da22f2c
Polish "Add support for RabbitStreamTemplate"
...
See gh-28060
3 years ago
Stephane Nicoll
3ef03cddb9
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
9c868751d6
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29199
3 years ago
Stephane Nicoll
f54ea67ed6
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29198
3 years ago
dreis2211
7a87d18b12
Update copyrights to 2022
...
See gh-29195
3 years ago
Stephane Nicoll
09486b8fc7
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
2b140950e3
Merge branch '2.6.x' into 2.7.x
...
Closes gh-29176
3 years ago
izeye
7fbb5749d1
Polish
...
See gh-29157
3 years ago
Brian Clozel
f61c87c3a7
Revert "Merge branch '2.7.x'"
...
This reverts commit f0677a119c
, reversing
changes made to 938d58f32c
.
3 years ago
Brian Clozel
f0677a119c
Merge branch '2.7.x'
3 years ago
Brian Clozel
22706057f0
Document Spring GraphQL support
...
This commit documents all the features added in the previous commits:
from the main infrastructure support, to testing and metrics.
See gh-29140
3 years ago
Madhura Bhave
9f47c4a7e0
Merge branch '2.7.x' into main
3 years ago
Madhura Bhave
84f1a6ca09
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29138
3 years ago
Madhura Bhave
99e650bd27
Document devtools remote support not available with WebFlux
...
Closes gh-28955
3 years ago
Stephane Nicoll
409f4fdbd7
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
53654a0160
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29133
3 years ago
Pavel Anisimov
b704ee0b30
Polish reference doc
...
See gh-29115
3 years ago
Stephane Nicoll
b9057f1957
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
bcaa59ce73
Merge branch '2.5.x' into 2.6.x
...
Closes gh-29098
3 years ago
Pavel Anisimov
415c58e21b
Polish CacheManager customization section in reference doc
...
See gh-29094
3 years ago
Stephane Nicoll
377b58f64c
Merge branch '2.7.x'
3 years ago
Stephane Nicoll
5599e8d340
Polish "Add consistent quotes in YAML samples of reference doc"
...
See gh-28911
3 years ago
Viktor Ardelean
0b781d87b1
Add consistent quotes in YAML samples of reference doc
...
See gh-28911
3 years ago
Andy Wilkinson
fe7b13ec46
Upgrade to Spring Framework 6 and Jakarta EE 9
...
Closes gh-28619
Closes gh-28620
Closes gh-28621
Closes gh-28622
Closes gh-28623
Closes gh-28624
Closes gh-28625
Closes gh-28626
Closes gh-28627
Closes gh-28628
Closes gh-28629
Closes gh-28630
Closes gh-28631
Closes gh-28632
Closes gh-28633
Closes gh-28634
Closes gh-28635
Closes gh-28636
Closes gh-28638
Closes gh-28639
Closes gh-28640
Closes gh-28644
Closes gh-28645
Closes gh-28650
Closes gh-28711
Closes gh-28866
Closes gh-28867
Closes gh-28868
Closes gh-28872
See gh-28641
See gh-28642
See gh-28643
See gh-28646
See gh-28647
See gh-28648
See gh-28649
See gh-28721
See gh-28869
See gh-28871
3 years ago
Andy Wilkinson
4a8904aaa9
Drop support for jOOQ until its dependencies are Jakarta EE 9 compatible
...
Closes gh-28821
3 years ago
Andy Wilkinson
ba19440f8c
Drop support for EhCache 3 until it supports Jakarta EE 9
...
Closes gh-28800
3 years ago
Andy Wilkinson
a17d6f9791
Drop support for Infinispan until it is Jakarta EE 9 compatible
...
Closes gh-28799
3 years ago
Scott Frederick
015dca1956
Remove support for Thymeleaf
...
Closes gh-28611
3 years ago
Andy Wilkinson
f26995307e
Remove support for REST Assured until it supports Jakarta EE 9
...
Closes gh-28722
3 years ago
Andy Wilkinson
85f9949513
Remove support for Jolokia
...
Closes gh-28704
3 years ago
Andy Wilkinson
79b53e3562
Drop support for auto-configuring Hibernate metrics
...
Closes gh-28703
3 years ago
Madhura Bhave
c8fd5f0080
Remove support for Artemis
...
Closes gh-28593
3 years ago
Andy Wilkinson
8bf2ffd93c
Drop support for Jersey until jersey-spring6 is available
...
Closes gh-28808
3 years ago
Scott Frederick
29a21d4621
Remove support for Spring Data Couchbase and Couchbase caching
...
Fixes gh-28613
3 years ago
Andy Wilkinson
0024eba816
Remove dependency management for Apache Johnzon
...
Closes gh-28616
3 years ago
Andy Wilkinson
63492507b4
Remove support for Apache ActiveMQ
...
Closes gh-28591
3 years ago
Andy Wilkinson
a3c4059ee8
Remove support for H2's web console
...
Closes gh-28590
3 years ago
Andy Wilkinson
64bf33038d
Remove support for EhCache 2
...
Closes gh-28588
3 years ago
Andy Wilkinson
ef02cc9bff
Remove support for Atomikos
...
Closes gh-28589
3 years ago
Andy Wilkinson
99f33ede14
Remove SecurityManager support
...
Closes gh-28213
3 years ago
Andy Wilkinson
814c86c5e8
Raise the minimum supported version of Gradle to 7.3
...
Closes gh-28100
3 years ago
izeye
c7921468fc
Polish
...
See gh-28836
3 years ago
Stephane Nicoll
e4082ee5d9
Merge branch '2.5.x'
...
Closes gh-28834
3 years ago
fml2
1d786e49e9
Fix typos in the "External Application Properties" section
...
See gh-28830
3 years ago
Stephane Nicoll
9719930496
Merge branch '2.5.x'
...
Closes gh-28833
3 years ago
Xavier Bouclet
dce979d51f
Fix output of "spring --version" in reference documentation
...
See gh-28831
3 years ago
Andy Wilkinson
4a0fa62d2e
Polish "Replace "you're""
...
See gh-28710
3 years ago
Jay Bryant
e629e77b29
Replace "you're"
...
This commit replaces "you're" with some other structure, often
simplifying the sentence in the process.
Also checked for words that end with "'ll" and "n't" but did not find
any.
See gh-28710
3 years ago
Andy Wilkinson
29725ec68a
Update links to Spring Security's reference docs
...
Closes gh-28618
3 years ago
Stephane Nicoll
afa006986b
Merge branch '2.5.x'
...
Closes gh-28713
3 years ago
Vedran Pavic
c8dd0a584b
Fix "Configure Two DataSources" example
...
With the present example, the `secondDataSource` bean factory method
will use `firstDataSourceProperties` due to it being annotated with
`@Primary`.
This commit adds the `@Qualifier` needed to ensure `secondDataSource`
bean factory method uses `secondDataSourceProperties`.
See gh-28712
3 years ago
Stephane Nicoll
d88658d47a
Remove dependencies on micrometer-jersey2
...
Closes gh-28706
3 years ago
Stephane Nicoll
44b644c770
Merge branch '2.5.x'
...
Closes gh-28693
3 years ago
Stephane Nicoll
9ed7674ab0
Polish "Fix yaml sample format"
...
See gh-28671
3 years ago
Weix Sun
7f1bd43c84
Fix yaml sample format
...
See gh-28671
3 years ago
Stephane Nicoll
6d4537b5ae
Merge branch '2.5.x'
...
Closes gh-28692
3 years ago
Stephane Nicoll
6d79599d99
Polish "Fix yaml sample format in reference doc"
...
See gh-28670
3 years ago
Weix Sun
793a107d27
Fix yaml sample format in reference doc
...
See gh-28670
3 years ago
Andy Wilkinson
2a342ef416
Merge branch '2.5.x'
...
Closes gh-28662
3 years ago
Andy Wilkinson
5e4a502b2d
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28661
3 years ago
Andy Wilkinson
2cec3971d7
Prohibit unwanted dependencies in all modules not just starters
...
Closes gh-28658
3 years ago
Leo Li
508841b444
Replace "e.g." by "for example"
...
See gh-28583
3 years ago
Jay Bryant
3422b1f38b
Replace "refer to" with "see"
...
Update documentation to replace "refer to" with "see" and to drop
"please" when it is present.
See gh-28537
3 years ago
Jay Bryant
9f2c8f65ee
Replace "check out" with more formal language
...
Update documentation to use more formal language rather than
"check out".
See gh-28503
3 years ago
Phillip Webb
c7e61e448e
Polish "Remove 'etc' in reference documentation"
...
See gh-28497
3 years ago
Jay Bryant
0d025b672e
Remove 'etc' in reference documentation
...
Update the reference documentation to replace 'etc' with 'other'.
See gh-28497
3 years ago
Leo Li
73e9c355f1
Polish
...
See gh-28501
3 years ago
Stephane Nicoll
7ad60df844
Merge branch '2.5.x'
3 years ago
Stephane Nicoll
06e9991e6a
Polish
...
See gh-28501
3 years ago
Andy Wilkinson
4a15a816ce
Polish 'Replace "via" with words more suited to an international audience'
...
See gh-28464
3 years ago
Jay Bryant
73a18c73f4
Replace "via" with words more suited to an international audience
...
See gh-28464
3 years ago
Stephane Nicoll
ea8a8ecd0e
Merge branch '2.5.x'
...
Closes gh-28467
3 years ago
Stephane Nicoll
ce38d592f9
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28466
3 years ago
Stephane Nicoll
265199f42b
Polish "Fix description of "logging.logback.rollingpolicy.max-history""
...
See gh-28448
3 years ago
Phillip Webb
9cb5f035e7
Fix typo
...
See gh-20971
3 years ago
Andy Wilkinson
1005159eab
Merge branch '2.5.x'
...
Closes gh-28435
3 years ago
Andy Wilkinson
3fb5af9dd3
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28434
3 years ago
Andy Wilkinson
8a78864edd
Polish "Explain how to disable/configure the ActiveMQ embedded broker"
...
See gh-28183
3 years ago
Moritz Kammerer
0c5f0efcea
Explain how to disable/configure the ActiveMQ embedded broker
...
See gh-28183
3 years ago
Andy Wilkinson
d52b649bd7
Fix links to Spring Security's reference documentation
...
Closes gh-28407
3 years ago
Phillip Webb
cf9156e497
Add SameSite cookie support for servlet web servers
...
Update Tomcat, Jetty and Undertow `ServletWebServerFactory`
implementations so that they can write SameSite cookie attributes.
The session cookie will be customized whenever the
`server.servlet.session.cookie.same-site` property is set.
Other cookies can be customized with the new `CookieSameSiteSupplier`
interface which can be registered using `@Bean` methods.
Closes gh-20971
Co-authored-by Andy Wilkinson <wilkinsona@vmware.com>
3 years ago
Phillip Webb
3729c4909a
Polish package name for web sample code
...
See gh-27132
3 years ago
Andy Wilkinson
56b8494f15
Disable the env info contributor by default
...
Closes gh-28311
3 years ago
Andy Wilkinson
f98c1e7231
Disable the java info contributor by default
...
Closes gh-28310
Co-authored-by Phillip Webb <pwebb@vmware.com>
3 years ago
Andy Wilkinson
356554311f
Merge branch '2.5.x'
...
Closes gh-28381
3 years ago
Artem Bilan
344d008848
Remove redundant info about DefaultMetricsFactory
...
The DefaultMetricsFactory was removed from Spring Integration starting
with version 5.4. This commit updates the documentation to match.
See gh-28375
3 years ago
Andy Wilkinson
89b40e1e00
Add support for Log4j2's composite configuration
...
Closes gh-27110
3 years ago
Madhura Bhave
a86a84e00b
Merge branch '2.5.x' into main
...
Closes gh-28202
3 years ago
Madhura Bhave
9f4cf8398b
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28201
3 years ago
Madhura Bhave
61736e9958
Polish " Update configtree docs about dot notation being correctly mapped"
...
See gh-28170
3 years ago
deb-von-seggern
8f91fc450d
Update configtree docs about dot notation being correctly mapped
...
See gh-28170
3 years ago
Stephane Nicoll
5d17257a52
Polish "Add Java InfoContributor"
...
See gh-28136
3 years ago
Stephane Nicoll
1008b754d7
Merge branch '2.5.x'
...
Closes gh-28194
3 years ago
Stephane Nicoll
d22167b96a
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28193
3 years ago
Pratik Gupta
a3423f1edf
Fix log4j2 file name reference in reference doc
...
See gh-28189
3 years ago
Stephane Nicoll
1b7536fda4
Merge branch '2.5.x'
...
Closes gh-28160
3 years ago
Stephane Nicoll
1c139b1d23
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28159
3 years ago
Stephane Nicoll
bedd749e1c
Polish "Clarify use of @AutoConfigureTestEntityManager"
...
See gh-28086
3 years ago
Leo Li
70f64f2c26
Clarify use of @AutoConfigureTestEntityManager
...
This commit makes it clearer that, when using
@AutoConfigureTestEntityManager outside of @DataJpaTest, any tests using
the test entity manager must be @Transactional.
See gh-28086
3 years ago
Stephane Nicoll
9e1ef76f84
Polish "Replace latin locutions in the documentation"
...
See gh-28141
3 years ago
Vincent Ricard
873bca36c4
Replace latin locutions in the documentation
...
See gh-28141
3 years ago
Andy Wilkinson
ea68672594
Merge branch '2.5.x'
...
Closes gh-28153
3 years ago
Andy Wilkinson
9e484e2cdc
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28152
3 years ago
Andy Wilkinson
3824512357
Tighten up build's task interdependencies
...
Closes gh-28103
3 years ago
Stephane Nicoll
2d34cff902
Polish "Improve Dynatrace examples description in reference guide"
...
See gh-27502
3 years ago
Georg Pirklbauer
c236532607
Improve Dynatrace examples description in reference guide
...
See gh-27502
3 years ago
Artem Bilan
b2d1423e34
Add Spring Integration default poller auto-config
...
When polling consumers or source polling channel adapters are used in
Spring Integration applications, they require some polling policy to
be configured.
This comment auto-configures a PollerMetadata bean which customized
via newly added `spring.integration.poller.*` configuration
properties or overriden completely be user-defined bean.
See gh-27992
3 years ago
Stephane Nicoll
842f3f0bd5
Merge branch '2.5.x'
...
Closes gh-28099
3 years ago
Stephane Nicoll
77b778ce95
Document support for Java 17
...
Closes gh-26767
3 years ago
Phillip Webb
bc6b9be7cd
Merge branch '2.5.x'
...
Closes gh-28084
3 years ago
Phillip Webb
8c3db23be3
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28083
3 years ago
cdalexndr
798b282e58
Document that devtools restart doesn't work with AspectJ weaving
...
See gh-28071
3 years ago
Phillip Webb
61a84a4722
Polish asciidoctor links
...
Update `<<..>>` links to include the page.
3 years ago
dreis2211
3e831fe286
Fix link in caching docs
...
See gh-28078
3 years ago
Phillip Webb
667e5ca30c
Polish
3 years ago
Stephane Nicoll
124c3ac07c
Polish "Add support for used-defined RedisStandaloneConfiguration"
...
See gh-28028
3 years ago
dreis2211
cf0fcafd13
Polish
...
See gh-27940
3 years ago
Stephane Nicoll
eab8f41152
Polish "Remove english contractions from the documentation"
...
See gh-28064
3 years ago
Vincent Ricard
52176b8ed6
Remove english contractions from the documentation
...
See gh-28064
3 years ago
Stephane Nicoll
3ef17820e9
Polish
3 years ago
Madhura Bhave
ac00df79f1
Add what's next to new sections
...
This commit also moves hazelcast from core features to IO
Closes gh-27132
3 years ago
Madhura Bhave
7e257dc24c
Rename packages for code samples to match sections
...
See gh-27132
3 years ago
Andy Wilkinson
e2a355f003
Consolidate Elasticsearch configuration properties
...
Previously, a number of Elasticsearch properties were duplicated
across the spring.elasticsearch.rest and
spring.data.elasticsearch.client.reactive prefixes for configuring
the blocking REST client provided by Elasticsearch and the reactive
client provided by Spring Data respectively. This could cause
problems when using the Elasticsearch REST client configured with
a custom spring.elasticsearch.rest.uris. If Spring WebFlux (to make
use of WebClient) and Spring Data Elasticsearch were on the classpath,
the reactive Elasticsearch Client would be autoconfigured but it
would use the default value of its analogous
spring.data.elasticsearch.client.reactive.endpoints property. It
would be unable to connect, causing a startup failure.
This commit consoliates the configuration properties where possible.
Each setting that is common across the two clients is now configured
using a single, shared spring.elasticsearch property. Each setting
that is specific to the blocked REST client or the WebClient-based
reactive client now have prefixes of spring.elasticsearch.restclient
and spring.elasticsearch.webclient respectively.
The old properties beneath spring.elasticsearch.rest and
spring.data.elasticsearch.client.reactive have been deprecated. If a
any deprecated property is set, all of the new properties are
ignored. In other words, to migrate to the new properties, each usage
of a now-deprecated property must be updated to use its new
replacement instead.
Closes gh-23106
3 years ago
Stephane Nicoll
7957d97528
Polish
3 years ago
Stephane Nicoll
c62a6819fe
Polish "Add startup time metrics"
...
See gh-27878
3 years ago
Andy Wilkinson
32cfde074f
Merge branch '2.5.x'
3 years ago
Andy Wilkinson
9df099e343
Polish
3 years ago
Stephane Nicoll
e1b1a25021
Polish "Auto-configure Micrometer's Lettuce latency metrics"
...
See gh-27865
3 years ago
Antonin ARQUEY
190fea6faa
Auto-configure Micrometer's Lettuce latency metrics
...
Add auto-configuration support to export Lettuce latency metrics.
See gh-27865
3 years ago
Stephane Nicoll
c4823f80cd
Polish "Fix some typos in docs"
...
See gh-27968
3 years ago
Dmitriy Bogdanov
2ad3428039
Fix some typos in docs
...
See gh-27968
3 years ago
Stephane Nicoll
43a19c16a8
Merge branch '2.5.x'
...
Closes gh-27944
3 years ago
Stephane Nicoll
2327cda5c9
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27943
3 years ago
cdalexndr
60bc94e1d4
Clarify Selenium auto-configuration requires HtmlUnit
...
The auto-configuration requires `HtmlUnit`, so this auto-cofiguration
only works if both Selenium and HtmlUnit are used.
Prevents misinterpretation that WebDriver can be auto configured without
htmlunit.
See gh-27920
3 years ago
Stephane Nicoll
78d6c94a7e
Polish "Auto-Configure Kafka CommonErrorHandler"
...
See gh-27927
3 years ago
Yanming Zhou
6e9bdacc10
Include WebMvcRegistrations beans in WebMvcTest
...
See gh-27823
3 years ago
Phillip Webb
56595c0027
Use consistent case for 'Servlet' and 'Filter' in documentation
...
Closes gh-27896
3 years ago
Jay Bryant
f7f5f9fb96
Make editorial changes to actuator documentation
...
See gh-27759
3 years ago
Jay Bryant
2691828d2b
Update actuator docs to prefer "You can..."
...
Edit the actuator docs so that more "You can..." phrasing is used.
For example
"Auditing can be enabled by providing"
becomes
"You can enable auditing by providing"
See gh-27759
3 years ago
Jay Bryant
53363c84cb
Improve actuator example lead-in text
...
Update example lead-in text to a slightly shorter form.
For example
"as shown in the following example"
Becomes
"as the following example shows"
See gh-27759
3 years ago
Jay Bryant
e44585d89a
Polish actuator docs markup and formatting
...
Improve consistency of the asciidoctor markup and formatting for
the actuator section.
See gh-27759
3 years ago
Stephane Nicoll
2286f58e23
Merge branch '2.5.x'
...
Closes gh-27877
3 years ago
Stephane Nicoll
7cc8668540
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27876
3 years ago
Yanming Zhou
6bf92f06e9
Fix inconsistent devtools doc
...
See gh-27812
3 years ago
Andy Wilkinson
e299175eef
Polish "Only link to other formats from each format of the ref docs"
...
See gh-27737
3 years ago
Jay Bryant
edab97a3e4
Only link to other formats from each format of the ref docs
...
See gh-27737
3 years ago
Jay Bryant
47bbae8356
Polish the multi-page documentation's index
...
See gh-27805
3 years ago
Andy Wilkinson
07d9a614e0
Merge branch '2.5.x'
...
Closes gh-27804
3 years ago
Andy Wilkinson
b508d77a4e
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27803
3 years ago
Andy Wilkinson
990b766847
Polish "Document how to parameterize REST Docs' output dir with WebTestClient"
...
See gh-27755
3 years ago
Berchris Requiao
c83f6ebaa2
Document how to parameterize REST Docs' output dir with WebTestClient
...
See gh-27755
3 years ago
Madhura Bhave
2c9945efc7
Merge pull request #27761 from dreis2211
...
* pr/27761:
Fix broken links in docs
Closes gh-27761
3 years ago
dreis2211
7c8ccfc4c1
Fix broken links in docs
...
See gh-27761
3 years ago
Madhura Bhave
8fd9eb72d4
Allow part of a composite contributor in a health group
...
Closes gh-23027
Co-authored-by: Phillip Webb <pwebb@vmware.com>
3 years ago
Stephane Nicoll
b65cc4d62f
Relocate DiskSpace metrics to SystemMetricsAutoConfiguration
...
Closes gh-27688
3 years ago
Stephane Nicoll
1475309b4d
Polish "Add expiry and bufferLength configuration properties"
...
See gh-27584
3 years ago
Madhura Bhave
49c86e6e1b
Allow health groups to be configured at an additional path
...
Closes gh-25471
Co-authored-by: Phillip Webb <pwebb@vmware.com>
3 years ago
Brian Clozel
8b3bea173c
Configure WebTestClient for @AutoConfigureMockMvc tests
...
As of Spring Framework 5.3, `WebTestClient` can now be configured on top
of `MockMvc` for testing Spring MVC applications in a mock environment.
Prior to this commit, `WebTestClient` would be already configured for
WebFlux mock setups with `@AutoConfigureWebTestClient` or live servers
(for both MVC and WebFlux apps).
This commit enhances the `@AutoConfigureWebMvc` support so that a
`WebTestClient` instance is auto-configured if the spring-webflux
dependency is present on the classpath.
Closes gh-23067
3 years ago
Andy Wilkinson
64c0eceec7
Add support for dumping the heap on OpenJ9
...
Closes gh-26466
3 years ago
Andy Wilkinson
621844abda
Polish "Use MessageSource to interpolate bean validation messages"
...
See gh-17530
3 years ago
Andy Wilkinson
a5656e0932
Make @ConstructorBinding implict for config prop records
...
Closes gh-27216
3 years ago
Andy Wilkinson
37f690323f
Polish
...
Closes gh-27432
3 years ago
Andy Wilkinson
bb26b7bdf5
Polish
...
Closes gh-27431
3 years ago
Andy Wilkinson
8e7a6ceb44
Polish "Make dev tools' home directory configurable"
...
See gh-17924
3 years ago
Andy Wilkinson
6d50e65572
Revert "Add support for InfluxDB 2.x"
...
This reverts commit 52fedb2bb4
.
See gh-25891
3 years ago
Andy Wilkinson
4d30eb453f
Adopt Hiberate's CamelCaseToUnderscoresNamingStrategy
...
Closes gh-27352
3 years ago
Andy Wilkinson
d60191add2
Merge pull request #26258 from pirgeo
...
* gh-26258:
Polish "Refine documentation"
Refine documentation
Polish "Add properties for Dynatrace metrics API v2 ingest with Micrometer"
Add properties for Dynatrace metrics API v2 ingest with Micrometer
Closes gh-26258
3 years ago
Andy Wilkinson
21b3202ab2
Polish "Refine documentation"
...
See gh-26258
3 years ago
Georg Pirklbauer
d0cd3ab1d3
Refine documentation
...
See gh-26258
3 years ago
Andy Wilkinson
43f1b98864
Polish "Add @WebServiceServerTest slice test support"
...
See gh-27091
3 years ago
Madhura Bhave
cdd80e660a
Merge branch '2.5.x' into main
...
Closes gh-27358
3 years ago
anvithabs
e48efa158b
Fix reference to a configuration property in cloud.adoc
...
See gh-27357
3 years ago
Andy Wilkinson
84455f86fd
Polish "Add properties for Dynatrace metrics API v2 ingest with Micrometer"
3 years ago
Georg Pirklbauer
3161164912
Add properties for Dynatrace metrics API v2 ingest with Micrometer
3 years ago
Andy Wilkinson
d21f8df1ad
Polish "Auto-configure Jetty connection and SSL metrics"
...
See gh-26418
3 years ago
Andy Wilkinson
d7fd675f58
Merge branch '2.5.x'
...
Closes gh-27302
3 years ago
Andy Wilkinson
d9e525c326
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27301
3 years ago
Andy Wilkinson
2354dd5ccb
Include Jetty metrics in list of supported metrics
...
Closes gh-27299
3 years ago
Andy Wilkinson
4d76660f17
Polish "Remove default spring.mongodb.embedded.version"
...
See gh-27108
3 years ago
bono007
d16ecab24b
Remove default spring.mongodb.embedded.version
...
See gh-27108
3 years ago
Madhura Bhave
ce1dff86df
Merge branch '2.5.x' into main
...
See gh-27140
3 years ago
Madhura Bhave
c6acce569f
Merge branch '2.4.x' into 2.5.x
...
See gh-27139
3 years ago
Madhura Bhave
877f618a69
Clarify that HATEOAS can be used with Webflux without starter
...
Closes gh-26897
3 years ago
Madhura Bhave
1dc8fa14c9
Merge branch '2.5.x' into main
...
Closes gh-27140
3 years ago
Madhura Bhave
503d50f39e
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27139
3 years ago
Madhura Bhave
6c4273b5c9
Document spring hateoas is spring mvc specific
...
Closes gh-26897
3 years ago
Madhura Bhave
32a1644cca
Split spring boot features into multiple sections
...
See gh-27132
3 years ago
Stephane Nicoll
573ca50333
Merge branch '2.5.x'
...
Closes gh-27117
3 years ago
Nurlan Tembayev
e57970393c
Remove unnecessary unit for spring.datasource.tomcat.max-active
...
See gh-27103
3 years ago
Stephane Nicoll
53fe7b71f6
Merge branch '2.5.x'
...
Closes gh-27116
3 years ago
biergit
79638a8f63
Fix anchor rewrites containing a question mark
...
See gh-27107
3 years ago
Stephane Nicoll
0f20c236da
Merge branch '2.5.x'
...
Closes gh-27112
3 years ago
Cèsar Ordiñana
0c38449851
Fix typo in section title
...
See gh-27102
3 years ago
Stephane Nicoll
7d8e7468bf
Merge branch '2.5.x'
...
See gh-27065
3 years ago
Stephane Nicoll
d079db1dce
Polish
...
See gh-26978
3 years ago
Stephane Nicoll
d4fa46f1b9
Polish startup endpoint description in reference doc
...
Closes gh-26978
3 years ago
Phillip Webb
e85b0c7012
Merge branch '2.5.x'
3 years ago
Phillip Webb
fd83158fa5
Merge branch '2.4.x' into 2.5.x
3 years ago
Phillip Webb
5fc0e1ca81
Merge branch '2.5.x'
...
Closes gh-27057
3 years ago
Phillip Webb
af37f59136
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27056
3 years ago
Andy Wilkinson
4290193a65
Merge branch '2.5.x'
...
Closes gh-27025
3 years ago
Andy Wilkinson
051638631b
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27024
3 years ago
Andy Wilkinson
ba9244b2d4
Polish "Update docs to use @SpringBootConfiguration not @Configuration"
...
See gh-26937
3 years ago
Yanming Zhou
a5f077cf79
Update docs to use @SpringBootConfiguration not @Configuration
...
See gh-26937
3 years ago
Stephane Nicoll
63fe89f641
Merge branch '2.5.x'
...
Closes gh-26957
3 years ago
Yanming Zhou
12a6e4c231
Add missing space for asciidoc ordered list
...
See gh-26955
3 years ago
Phillip Webb
ad8ce2aa05
Merge branch '2.5.x'
3 years ago
Phillip Webb
5c65b1bcde
Fix asciidoctor anchor references
...
See gh-26939
3 years ago
Phillip Webb
7bd6611e4c
Merge branch '2.5.x'
...
Closes gh-26940
3 years ago
Phillip Webb
c3b873c11d
Merge branch '2.4.x' into 2.5.x
...
Closes gh-26939
3 years ago
Phillip Webb
b5c92d5174
Allow indirect standard profile-specific imports
...
Effectively revert commit d1b256a169
so that profile-specific imports
can again be used with or without a parent import.
Fixes gh-26858
3 years ago
Stephane Nicoll
a1a86e75ac
Merge branch '2.5.x'
...
Closes gh-26912
3 years ago
Stephane Nicoll
96029dbd8a
Polish "Add Azure info to the cloud deployment docs"
...
See gh-26910
3 years ago
Andy Clement
8321faaf16
Add Azure info to the cloud deployment docs
...
See gh-26910
3 years ago
Stephane Nicoll
52fedb2bb4
Add support for InfluxDB 2.x
...
Closes gh-25891
3 years ago
Madhura Bhave
aa873d3a22
Reorder documentation overview section
...
The documentation overview sections is supposed to provide a map
for the rest of the reference document. The getting help and upgrading
sections were moved to align with that.
3 years ago
Madhura Bhave
91ca9763e0
Reorder documentation overview section
...
The documentation overview sections is supposed to provide a map
for the rest of the reference document. The getting help and upgrading
sections were moved to align with that.
3 years ago
Andy Wilkinson
bc715c64b1
Merge branch '2.5.x'
...
Closes gh-26892
3 years ago
Andy Wilkinson
5f26fd9ccb
Merge branch '2.4.x' into 2.5.x
...
Closes gh-26891
3 years ago
Andy Wilkinson
f6b7730dac
Use Asciidoctor's revision line to provide document's version
...
Using the revision line means that the revision number is automatically
set. The revision number is then included by the HTML and PDF backends
in the standard location. In the HTML backend that's alongside the
list of authors. In the PDF backend that's on the title page.
Closes gh-26851
3 years ago
Stephane Nicoll
a0cf1eed41
Add support for customizing the auto-configured ClientResources
...
Closes gh-26792
3 years ago
Stephane Nicoll
f8555b9071
Add metrics for task execution and scheduling
...
Closes gh-23818
3 years ago
Stephane Nicoll
6505e03cb2
Polish "Add auto-configuration for Spring Data Envers"
...
See gh-22610
3 years ago
Stephane Nicoll
d17c475504
Polish "Enable Redis connection pool if commons-pool2 is available"
...
See gh-26326
3 years ago
Stephane Nicoll
6b4efcce11
Polish "Apply RSocketConnectorConfigurer beans to RSocketRequester.Builder"
...
See gh-26341
3 years ago
Stephane Nicoll
69c2621a14
Polish "Add support for @Value annotation"
...
See gh-26337
3 years ago
bono007
e3f03dd50a
Add auto-configuration for DiskSpaceMetrics
...
See gh-26001
3 years ago
Madhura Bhave
2e2d1fe8d3
Merge branch '2.4.x' into main
3 years ago
Madhura Bhave
e3042b38f5
Merge branch '2.3.x' into 2.4.x
3 years ago
Madhura Bhave
63806d5bac
Remove duplicate copyright notice from docs
3 years ago
Andy Wilkinson
de410b7621
Merge branch '2.4.x'
...
Closes gh-26828
3 years ago
Andy Wilkinson
a1c5fcca58
Move common Asciidoctor configuration into our conventions
...
Closes gh-26620
3 years ago
Phillip Webb
f798f26596
Merge branch '2.4.x'
3 years ago
Andy Wilkinson
c52143727a
Reinstate mode for controlling DB initialization
...
Closes gh-26682
3 years ago
Phillip Webb
abd926788f
Merge branch '2.4.x'
...
Closes gh-26782
3 years ago
Phillip Webb
7396e1e743
Fix property ordering within '.' and '/config'
...
Allow groups to be used with standard locations so that order of
profile-specific files is consistent.
Prior to this commit, the default search locations considered for
application properties/yaml files was the following:
optional:classpath:/
optional:classpath:/config/
optional:file:./
optional:file:./config/
optional:file:./config/*/
Each of these locations was independent which could cause confusion
if certain combinations were used. For example, if profile-specific
files were added to `classpath:/` and `classpath:/config/` then the
latter would always override the former regardless of the profile
ordering.
This commit updates `StandardConfigDataLocationResolver` so that a
group of locations can be specified for each item. This allows us to
define the following set of search locations which provide more logical
ordering for profile-specific files
optional:classpath:/;optional:classpath:/config/
optional:file:./;optional:file:./config/;optional:file:./config/*/
Closes gh-26593
3 years ago
Madhura Bhave
554cf9d7c7
Merge branch '2.4.x' into main
...
Closes gh-26741
4 years ago
Madhura Bhave
2ff3fe22e5
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26740
4 years ago
Madhura Bhave
d0e2925dcc
Fix link to Spring Data JPA docs
...
Fixes gh-26736
4 years ago
Stephane Nicoll
1f95989e85
Merge branch '2.4.x'
...
Closes gh-26735
4 years ago
Stephane Nicoll
363c43e315
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26734
4 years ago
Stephane Nicoll
3f23b9265d
Clarify when a connection pool is created for Redis
...
Closes gh-26733
4 years ago