Brian Clozel
e4fa9ce8c6
Deprecate server.connection-timeout property
...
Prior to this commit, all supported servers would share the same
configuration property `server.connection-timeout`. Unfortunately, in
many cases the behavior of this timeout changes depending on the server.
From actual connection setup timeout, to detecting and closing idle
connections, this property cannot be properly translated from one server
implementation to another.
This commit deprecates this configuration property and introduces server
specific properties:
* `server.jetty.connection-idle-timeout`
(Time that the connection can be idle before it is closed.)
* `server.netty.connection-timeout`
(Connection timeout of the Netty channel.)
* `server.tomcat.connection-timeout`
(Amount of time the connector will wait, after accepting a connection,
for the request URI line to be presented.)
* `server.undertow.no-request-timeout`
(Amount of time a connection can sit idle without processing a request,
before it is closed by the server.)
`server.connection-timeout` is now deprecated and will be removed in a
future release.
Fixes gh-18473
5 years ago
Stephane Nicoll
22f44917ca
Polish "Add metadata entry for spring.main.register-shutdown-hook"
...
See gh-18581
5 years ago
leoli
9b781449cf
Add metadata entry for spring.main.register-shutdown-hook
...
See gh-18581
5 years ago
Stephane Nicoll
f05d7902e2
Polish "Clarify formatting recommendations for configuration property javadoc"
...
See gh-18578
5 years ago
Rafiullah Hamedy
1f9b68707f
Clarify formatting recommendations for configuration property javadoc
...
This commit adds a note to spring-boot-features.adoc to clarify that
using javadoc tags to format configuration property descriptions is not
supported.
See gh-18578
5 years ago
Ted M. Young
f553784ebc
Fix incorrect backslash escape in documentation sample
...
See gh-18546
5 years ago
Andy Wilkinson
3d4157ad6d
Correct SCM URLs in published poms
...
Previously, Maven's default behaviour was relied up which resulted
in the artifact ID being appended to each URL as it was inherited.
This behaviour can only be disabled in Maven 3.6 and later, a version
that we cannot use due to an incompatibility with the Flatten Plugin.
This commit works around Maven's default behaviour by defining
properties for the SCM URL, connection, and developer connection and
then explicitly defining the settings in each pom using these
properties. The explicit definition of the properties in each pom
prevents them being inherited from the parent, thereby disabling the
unwanted appending of the artifact ID to the URL.
Fixes gh-18328
5 years ago
Johnny Lim
3a63179d81
Fix a broken Asciidoctor syntax
...
Along the way, this commit also fixes a typo.
Closes gh-18325
5 years ago
dreis2211
208fb8f1ef
Add Mustache to 'Customize ViewResolvers' docs section
...
See gh-18378
5 years ago
Johnny Lim
7319908b40
Polish
...
See gh-18347
5 years ago
leoli
09cf1e6791
Fix property name in "Task Execution and Scheduling" example
...
See gh-18331
5 years ago
Alessandro Falappa
b1750defde
Fix typo in configuration metadata appendix
...
See gh-18289
Closes gh-18289
5 years ago
Madhura Bhave
3c4449bf0e
Polish "Fix typo in logback example"
...
See gh-18295
5 years ago
Harald Brabenetz
0091c04720
Fix typo in logback example
...
See gh-18295
5 years ago
Madhura Bhave
f9d94c6ed0
Remove duplicate word in docs
5 years ago
Alessandro Falappa
6dab9bb224
Fix pre-defined logging group documentation
...
See gh-18270
5 years ago
Peter Sauer
dba18ce778
Fix minor typo
...
The phrase `We have you covered.` is a sentence and so it should start
with a capital `W`.
See gh-18216
5 years ago
Andy Wilkinson
4f21b51a2b
Polish one sentence per line in the reference docs
5 years ago
Andy Wilkinson
8882c532cd
Correct attribute references in reference documentation
...
Fixes gh-18163
5 years ago
Phillip Webb
a3cde7fd8d
Fix typo
5 years ago
Phillip Webb
a0a204ae6a
Clarify devtools trigger file documentation
...
Closes gh-17775
5 years ago
Phillip Webb
f1bbb2a017
Fix documentation typos
...
See gh-16718
5 years ago
Andy Wilkinson
7f62c5a283
Provide a How-To for customizing Reactor Netty's TcpClient
...
Closes gh-17856
5 years ago
Phillip Webb
624c118cdf
Polish "Document the pros and cons of MockMvc"
...
See gh-16718
5 years ago
Tetsuya Hasegawa
8f8a4af001
Document the pros and cons of MockMvc
...
Update the MockMvc documentation to provide more details about the
pros and cons of such an approach, specifically calling out the
difference with error page handling.
See gh-16718
5 years ago
Phillip Webb
158e25c00f
Extend documentation on logback include files
...
Expand the Logback "How To" to provide further clarifications on
the different include files available.
See gh-16901
5 years ago
michal
1f97a60d16
Clarify documentation on logback include files
...
Update documentation and comments on Logback to show the correct
use of `default.xml` rather than `base.xml`.
See gh-16901
5 years ago
dreis2211
087795fb67
Remove duplicated dependency in spring-boot-docs
...
See gh-18092
5 years ago
Phillip Webb
e07889b092
Document that Filter beans are eagerly initialized
...
Closes gh-17814
5 years ago
Phillip Webb
7e60f4b32a
Clarify "YAML Shortcomings" documentation
...
Closes gh-17933
5 years ago
Phillip Webb
ffbd11caba
Document logger environment variable restrictions
...
Update the reference guide with a note about using environment variables
to configure logging.
Closes gh-17958
5 years ago
Phillip Webb
6ca92418b5
Document need to exactly JPA property names
...
Closes gh-17975
5 years ago
Phillip Webb
e4dfb74629
Polish
5 years ago
Phillip Webb
1ff784ff54
Remove MBean shutdown warning from documentation
...
Closes gh-17988
5 years ago
Phillip Webb
368eb566fb
Use versioned links in documentation
...
Update the reference documentation to use versioned links rather then
`/current/` whenever possible.
Closes gh-18000
5 years ago
Phillip Webb
348d65b4fe
Polish documentation
5 years ago
Phillip Webb
7f9d143e01
Polish documentation
...
Update reference documentation source to use consistent attribute names
and fix a few formatting issues.
5 years ago
Phillip Webb
572e491465
Remove Gemfire starter details from documentation
...
Closes gh-18002
5 years ago
Phillip Webb
dbccb705a8
Clarify "Web Application Conditions" documentation
...
Update the reference documentation so that "Web Application Conditions"
also covers reactive contexts.
Closes gh-18005
5 years ago
dreis2211
b6fff67f6e
Remove reference to non-existent --edit option in CLI docs
...
See gh-18015
5 years ago
Phillip Webb
64d4bf823a
Reformat documentation to one sentence per line
...
Update reference documentation to use one sentence per line formatting
as recommended by the Asciidoctor team.
Closes gh-12445
5 years ago
leoli
34d28f48ca
Fix Undertow access log dir property name in doc
...
See gh-17968
5 years ago
Madhura Bhave
8d7deb7b67
Polish "Expand documentation on remote devtools"
...
See gh-17780
5 years ago
Sergei Petunin
ab33bc7deb
Expand documentation on remote devtools
...
See gh-17780
5 years ago
Stephane Nicoll
fcf4680626
Polish "Document how to add metadata for collection and enum default values"
...
Closes gh-12874
5 years ago
Madhura Bhave
38d36ab18d
Document how to add metadata for collection and enum default values
...
Closes gh-12874
5 years ago
Stephane Nicoll
56c2a52ea4
Polish "Fix syntax errors in docs"
...
Closes gh-17835
5 years ago
dreis2211
2e32af4737
Fix syntax errors in docs
...
See gh-17835
5 years ago
Madhura Bhave
47a9bb1c0e
Document that auto-configuration classes are not public API
...
Closes gh-16704
5 years ago
Madhura Bhave
1b62a05c40
Document Prometheus Pushgateway support
...
Closes gh-16853
5 years ago
Madhura Bhave
faaada1416
Remove liquibase check change log location
...
Missing change logs would lead to an exception even
if the checkChangeLogLocation was set to false. Spring Boot's check
would pass but Liquibase would fail later making this property redundant.
Fixes gh-16232
5 years ago
Stephane Nicoll
bacb4d1715
Polish "Refine back-off strategy of Neo4j SessionFactory"
...
See gh-17662
5 years ago
Tomas Aschan
1b172dc4fe
Clarify documentation about specifying main class
...
See gh-17003
5 years ago
Phillip Webb
fb1dd8fe93
Merge branch '2.0.x' into 2.1.x
5 years ago
Phillip Webb
913e831f4e
Merge '1.5.x' into 2.0.x
5 years ago
Stephane Nicoll
30fe10613d
Improve how to configure configuration keys of a custom starter
...
Closes gh-17573
5 years ago
Stephane Nicoll
300f07b2a8
Polish
5 years ago
Andy Wilkinson
74f0e42c98
Make it clearer when there will be no auto-configured MessageSource
...
Closes gh-17485
5 years ago
dreis2211
43833c7bf0
Remove unused java-statsd-client dependencies
...
See gh-17508
5 years ago
Stephane Nicoll
b6ca1eadeb
Fix prefix for datasource metrics
...
Closes gh-17553
5 years ago
Stephane Nicoll
a64317b114
Fix broken link to Spring Integration metrics section
...
Closes gh-17543
5 years ago
Stephane Nicoll
852f4a280c
Fix supported java version range in documentation
...
Closes gh-17476
5 years ago
Stephane Nicoll
3fb15a502b
Remove outdated reference to Guava in the reference guide
...
Closes gh-17446
5 years ago
Phillip Webb
88b6a3308c
Escape additional '{reference}' elements in asciidoc
...
Escape lines that look like variable references but should actually be
included verbatim.
Closes gh-17386
5 years ago
Andy Wilkinson
34e0db2c25
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17382
5 years ago
Andy Wilkinson
0c44584b44
Merge branch '1.5.x' into 2.0.x
5 years ago
Andy Wilkinson
1b495f5a42
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17195
6 years ago
Andy Wilkinson
4bae91d933
Merge branch '1.5.x' into 2.0.x
6 years ago
dreis2211
23b09ecca6
Make dependency available for javadoc generation
...
See gh-17111
6 years ago
Phillip Webb
866e2b712e
Merge branch '2.0.x' into 2.1.x
6 years ago
Phillip Webb
2c8881a908
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
24925c3dae
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17078
6 years ago
Andy Wilkinson
c6c139d980
Merge branch '1.5.x' into 2.0.x
6 years ago
Phillip Webb
ccfbd03482
Merge branch '2.0.x' into 2.1.x
6 years ago
Phillip Webb
5fba43aa31
Merge branch '1.5.x' into 2.0.x
6 years ago
Phillip Verheyden
2149ba4051
Use a regex that captures numbers and qualifiers
...
Fix the regular expression used in the devtools documentation to
include a version number pattern.
Closes gh-16946
6 years ago
Stefan Dellmuth
ecdcec2b5d
Polish indentation
...
Closes gh-16731
6 years ago
Stephane Nicoll
d8f1bd351f
Polish "Add link to Heroku article"
...
Closes gh-16719
6 years ago
Tetsuya Hasegawa
2655122466
Add link to Heroku article
...
See gh-16719
6 years ago
Stephane Nicoll
680ac85a2a
Polish
...
See gh-16714
6 years ago
Stephane Nicoll
51c0fdcab1
Polish "Document that JUnit 4 is the default"
...
Closes gh-16707
6 years ago
Tetsuya Hasegawa
e36ca923b9
Document that JUnit 4 is the default
...
See gh-16707
6 years ago
Stephane Nicoll
3c5ec8a04c
Merge branch '2.0.x' into 2.1.x
6 years ago
Stephane Nicoll
ac9ee952c7
Properly merge fix
...
See gh-16666
6 years ago
Andy Wilkinson
dacbb65fd7
Merge branch '2.0.x' into 2.1.x
...
Closes gh-16579
6 years ago
Andy Wilkinson
7260c0f2c4
Merge branch '1.5.x' into 2.0.x
6 years ago
Adam Michalik
55987a51c7
Fix package of java.time.Duration in documentation
...
Closes gh-16527
6 years ago
Madhura Bhave
ddc52502f5
Document @MockBean behavior during context refresh
...
Closes gh-16333
6 years ago
Phillip Webb
47c6bf741d
Merge branch '2.0.x' into 2.1.x
6 years ago
Phillip Webb
07c000c5b7
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
6aa78801ff
Merge branch '2.0.x' into 2.1.x
6 years ago
Andy Wilkinson
6507d1723d
Merge branch '1.5.x' into 2.0.x
6 years ago
Spring Operator
9fc3ac7d49
Use HTTPS for external links wherever possible
...
See gh-16320
6 years ago
Andy Wilkinson
864942ad4f
Merge branch '2.0.x' into 2.1.x
6 years ago
Andy Wilkinson
14b21026bf
Polish "Use HTTPS for external links wherever possible"
...
See gh-16319
6 years ago
Spring Operator
1a4c6f2dac
Use HTTPS for external links wherever possible
...
See gh-16319
6 years ago
Andy Wilkinson
ba4671f0ab
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
4900505425
Merge branch '2.0.x' into 2.1.x
6 years ago
Andy Wilkinson
fedb40a2bf
Merge branch '1.5.x' into 2.0.x
6 years ago
Madhura Bhave
1ad52b651a
Document using the same port for the management server on CF
...
Closes gh-15640
6 years ago