Andy Wilkinson
64c0eceec7
Add support for dumping the heap on OpenJ9
...
Closes gh-26466
4 years ago
Andy Wilkinson
621844abda
Polish "Use MessageSource to interpolate bean validation messages"
...
See gh-17530
4 years ago
Andy Wilkinson
a5656e0932
Make @ConstructorBinding implict for config prop records
...
Closes gh-27216
4 years ago
Andy Wilkinson
8e7a6ceb44
Polish "Make dev tools' home directory configurable"
...
See gh-17924
4 years ago
Andy Wilkinson
6d50e65572
Revert "Add support for InfluxDB 2.x"
...
This reverts commit 52fedb2bb4 .
See gh-25891
4 years ago
Andy Wilkinson
4d30eb453f
Adopt Hiberate's CamelCaseToUnderscoresNamingStrategy
...
Closes gh-27352
4 years ago
Andy Wilkinson
21b3202ab2
Polish "Refine documentation"
...
See gh-26258
4 years ago
Georg Pirklbauer
d0cd3ab1d3
Refine documentation
...
See gh-26258
4 years ago
Andy Wilkinson
43f1b98864
Polish "Add @WebServiceServerTest slice test support"
...
See gh-27091
4 years ago
anvithabs
e48efa158b
Fix reference to a configuration property in cloud.adoc
...
See gh-27357
4 years ago
Andy Wilkinson
84455f86fd
Polish "Add properties for Dynatrace metrics API v2 ingest with Micrometer"
4 years ago
Georg Pirklbauer
3161164912
Add properties for Dynatrace metrics API v2 ingest with Micrometer
4 years ago
Andy Wilkinson
d21f8df1ad
Polish "Auto-configure Jetty connection and SSL metrics"
...
See gh-26418
5 years ago
Andy Wilkinson
2354dd5ccb
Include Jetty metrics in list of supported metrics
...
Closes gh-27299
5 years ago
Andy Wilkinson
4d76660f17
Polish "Remove default spring.mongodb.embedded.version"
...
See gh-27108
5 years ago
bono007
d16ecab24b
Remove default spring.mongodb.embedded.version
...
See gh-27108
5 years ago
Madhura Bhave
877f618a69
Clarify that HATEOAS can be used with Webflux without starter
...
Closes gh-26897
5 years ago
Madhura Bhave
6c4273b5c9
Document spring hateoas is spring mvc specific
...
Closes gh-26897
5 years ago
Madhura Bhave
32a1644cca
Split spring boot features into multiple sections
...
See gh-27132
5 years ago
Nurlan Tembayev
e57970393c
Remove unnecessary unit for spring.datasource.tomcat.max-active
...
See gh-27103
5 years ago
biergit
79638a8f63
Fix anchor rewrites containing a question mark
...
See gh-27107
5 years ago
Cèsar Ordiñana
0c38449851
Fix typo in section title
...
See gh-27102
5 years ago
Stephane Nicoll
d079db1dce
Polish
...
See gh-26978
5 years ago
Stephane Nicoll
d4fa46f1b9
Polish startup endpoint description in reference doc
...
Closes gh-26978
5 years ago
Andy Wilkinson
ba9244b2d4
Polish "Update docs to use @SpringBootConfiguration not @Configuration"
...
See gh-26937
5 years ago
Yanming Zhou
a5f077cf79
Update docs to use @SpringBootConfiguration not @Configuration
...
See gh-26937
5 years ago
Yanming Zhou
12a6e4c231
Add missing space for asciidoc ordered list
...
See gh-26955
5 years ago
Phillip Webb
5c65b1bcde
Fix asciidoctor anchor references
...
See gh-26939
5 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
5 years ago
Stephane Nicoll
96029dbd8a
Polish "Add Azure info to the cloud deployment docs"
...
See gh-26910
5 years ago
Andy Clement
8321faaf16
Add Azure info to the cloud deployment docs
...
See gh-26910
5 years ago
Stephane Nicoll
52fedb2bb4
Add support for InfluxDB 2.x
...
Closes gh-25891
5 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.
5 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.
5 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
5 years ago
Stephane Nicoll
a0cf1eed41
Add support for customizing the auto-configured ClientResources
...
Closes gh-26792
5 years ago
Stephane Nicoll
f8555b9071
Add metrics for task execution and scheduling
...
Closes gh-23818
5 years ago
Stephane Nicoll
6505e03cb2
Polish "Add auto-configuration for Spring Data Envers"
...
See gh-22610
5 years ago
Stephane Nicoll
d17c475504
Polish "Enable Redis connection pool if commons-pool2 is available"
...
See gh-26326
5 years ago
Stephane Nicoll
6b4efcce11
Polish "Apply RSocketConnectorConfigurer beans to RSocketRequester.Builder"
...
See gh-26341
5 years ago
Stephane Nicoll
69c2621a14
Polish "Add support for @Value annotation"
...
See gh-26337
5 years ago
bono007
e3f03dd50a
Add auto-configuration for DiskSpaceMetrics
...
See gh-26001
5 years ago
Madhura Bhave
63806d5bac
Remove duplicate copyright notice from docs
5 years ago
Andy Wilkinson
a1c5fcca58
Move common Asciidoctor configuration into our conventions
...
Closes gh-26620
5 years ago
Andy Wilkinson
c52143727a
Reinstate mode for controlling DB initialization
...
Closes gh-26682
5 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
5 years ago
Madhura Bhave
d0e2925dcc
Fix link to Spring Data JPA docs
...
Fixes gh-26736
5 years ago
Stephane Nicoll
3f23b9265d
Clarify when a connection pool is created for Redis
...
Closes gh-26733
5 years ago
Madhura Bhave
f55e4c08f5
Add note about Kubernetes termination grace period
...
Closes gh-26469
5 years ago
Stephane Nicoll
454d72d9b2
Document spring.profiles.default in the reference guide
...
Closes gh-26592
5 years ago