Stephane Nicoll
da24a66ce6
Merge branch '2.1.x'
...
Closes gh-18875
2019-11-05 09:19:51 +01:00
Stephane Nicoll
5863a75c3c
Polish "Document Settings as jooq supported auto-configuration type"
...
See gh-18870
2019-11-05 09:18:32 +01:00
Jens Teglhus Møller
c34516cd9e
Document Settings as jooq supported auto-configuration type
...
See gh-18870
2019-11-05 09:17:25 +01:00
Andy Wilkinson
e26d5d95a8
Do not enable @ConfigurationPropertiesScan be default
...
In 2.2.0, @ConfigurationPropertiesScan was enabled by default.
Unfortunately, this had the unexpected side-effect of breaking
conditional enablement of a @ConfigurationProperties class via
@EnableConfigurationProperties if the @ConfigurationProperties class
was in a package covered by scanning.
This commit remove @ConfigurationPropertiesScan from
@SpringBootApplication so that it is no longer enabled by default.
2.1.x users who rely upon such conditional enablement of
@ConfigurationProperties classes can now upgrade to 2.2.x without
having to make any changes. Users who do not have such a need and are
in a position to use configuration properties scanning can now opt-in
by adding @ConfigurationPropertiesScan to their main application class
alongside @SpringBootApplication.
Closes gh-18674
2019-11-04 14:09:33 +00:00
Brian Clozel
b7f59eb7cb
Add config property for webflux codec maxInMemorySize
...
This commit creates a new configuration property
`spring.codec.max-in-memory-size` which configures the maximum
amount of data to be buffered in memory by codecs (both client and
server).
This property has no default value - it will let Spring Framework handle
the default behavior, currently enforcing a 256KB for provided codecs.
Fixes gh-18828
2019-10-31 20:01:43 +01:00
Stephane Nicoll
a664eadb9a
Merge branch '2.1.x'
...
Closes gh-18756
2019-10-27 08:43:27 +01:00
wwjay9
bd77c170f2
Fix OAuth2 Client redirect-uri references
...
See gh-18752
2019-10-27 08:42:48 +01:00
Madhura Bhave
25077de0b3
Merge branch '2.1.x'
...
Closes gh-18735
2019-10-24 17:02:33 -07:00
Madhura Bhave
593eca7998
Emphasize need for quotes around YAML bracket notation
...
Closes gh-18690
2019-10-24 17:00:54 -07:00
Madhura Bhave
bc3c3232c2
Merge branch '2.1.x'
...
Closes gh-18734
2019-10-24 16:06:27 -07:00
Madhura Bhave
e59a643e20
Emphasize the need of @Valid on nested configuration properties
...
Closes gh-18198
2019-10-24 16:02:59 -07:00
Philippe De Neve
8f990d97ab
Polish documentation
...
* Remove double occurrence of InfluxDbHealthIndicator.
* Fix JUnit 5 `@ExtendWith` references
* Use consistent casing of HtmlUnit.
See gh-18718
2019-10-23 17:56:00 -07:00
Stephane Nicoll
fd94608f73
Polish "Restore proxying of @Bean methods in @TestConfiguration"
...
See gh-18675
2019-10-22 09:13:00 +02:00
Andy Wilkinson
2cdf801e7f
Add a note to the docs about combining multiple security components
...
Previously, the documentation did not describe how to combine
multiple security components when one component's
WebSecurityConfigurerAdapter or SecurityWebFilterChain would cause
the other components' beans of the same type to back off.
This commit adds a note that such cases should be handled by the user
defining their own WebSecurityConfigurerAdapter or
SecurityWebFilterChain that configures the use of all of the
components as required.
Closes gh-18507
2019-10-16 16:09:13 +01:00
Stephane Nicoll
75bd15650f
Merge branch '2.1.x'
...
Closes gh-18587
2019-10-15 08:33:51 +02:00
Stephane Nicoll
f05d7902e2
Polish "Clarify formatting recommendations for configuration property javadoc"
...
See gh-18578
2019-10-15 08:32:48 +02:00
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
2019-10-15 08:29:51 +02:00
Andy Wilkinson
65818038fe
Polish "Update Kotlin-related reference documentation"
...
See gh-18573
2019-10-14 11:41:03 +01:00
Sebastien Deleuze
c6c9818285
Update Kotlin-related reference documentation
...
See gh-18573
2019-10-14 11:40:38 +01:00
Andy Wilkinson
c75b06c76c
Remove @ImmutableConfigurationProperties
...
Closes gh-18563
2019-10-14 11:29:09 +01:00
Stephane Nicoll
f7959bcd00
Merge branch '2.1.x'
...
Closes gh-18567
2019-10-13 08:45:44 +02:00
Ted M. Young
f553784ebc
Fix incorrect backslash escape in documentation sample
...
See gh-18546
2019-10-13 08:10:14 +02:00
leoli
2b5f8f36a2
Fix ImmutableConfigurationProperties import statement in ref docs
...
See gh-18548
2019-10-10 07:34:46 -05:00
Phillip Webb
386c0a60a7
Relax @ConstructorBinding member class requirement
...
Update `@ConfigurationProperties` so that `@ConstructorBinding` classes
no longer need to repeat the annotation for their members.
Closes gh-18481
2019-10-02 17:17:44 -07:00
Madhura Bhave
5547a8499f
Polish
2019-10-02 14:41:01 -07:00
Madhura Bhave
22ed56ac52
Add auto-config for Spring Security's SAML support
...
Closes gh-18260
Co-authored-by: Phillip Webb <pwebb@pivotal.io>
2019-10-02 11:23:21 -07:00
Andy Wilkinson
96f85a40de
Support customization of WebTestClient.Builder when using @SpringBootTest
...
Closes gh-15132
2019-10-02 17:51:00 +01:00
Phillip Webb
e41c5a4327
Require annotation signal for constructor binding
...
Update `@ConfigurationProperties` constructor binding support to only
apply when a `@ConstructorBinding` annotation is present on either the
type or the specific constructor to use.
Prior to this commit we didn't have a good way to tell when constructor
binding should be used vs regular autowiring.
For convenience, an `@ImmutableConfigurationProperties` meta-annotation
has also been added which is composed of `@ConfigurationProperties` and
`@ConstructorBinding`.
Closes gh-18469
2019-10-01 21:56:09 -07:00
Johnny Lim
3a63179d81
Fix a broken Asciidoctor syntax
...
Along the way, this commit also fixes a typo.
Closes gh-18325
2019-10-01 18:32:01 +02:00
Andy Wilkinson
a6f1619971
Use Asciidoctor extension to verify documented configuration properties
...
Closes gh-18451
2019-10-01 10:39:06 +01:00
Stephane Nicoll
15eeedb59a
Merge branch '2.1.x'
...
Closes gh-18380
2019-09-27 17:00:23 +02:00
Johnny Lim
7319908b40
Polish
...
See gh-18347
2019-09-27 16:57:09 +02:00
Andy Wilkinson
4ab53dc8ce
Fix broken and redirected links in the reference documentation
...
Fixes gh-18332
2019-09-24 15:19:04 +01:00
Stephane Nicoll
ddc96c1a62
Merge branch '2.1.x'
...
Closes gh-18336
2019-09-24 09:19:04 +02:00
leoli
09cf1e6791
Fix property name in "Task Execution and Scheduling" example
...
See gh-18331
2019-09-24 09:16:17 +02:00
Brian Clozel
60b1bbb8b2
Polish "Reference Spring Framework RSocket section + polish"
...
See gh-18321
2019-09-23 18:07:31 +02:00
Rossen Stoyanchev
9a70b5d1f5
Reference Spring Framework RSocket section + polish
2019-09-23 17:51:11 +02:00
Brian Clozel
79e4d1354d
Warn about RSocket web server compatibility
...
This commit warns developers about the fact that plugging RSocket into
an existing web server is only possible with Reactor Netty web servers.
RSocket itself is using Reactor Netty, so this is why we can plug an
RSocket over websocket handler in an existing Reactor Netty handler.
This feature is not possible with other web servers, as existing APIs do
not make that possible.
Fixes gh-17494
2019-09-20 19:20:32 +02:00
Johnny Lim
0243cfa23e
Fix a broken Asciidoctor syntax
...
Along the way, this commit also fixes a typo.
See gh-18288
2019-09-20 08:50:53 +02:00
Stephane Nicoll
19115d19f0
Merge branch '2.1.x'
...
Closes gh-18283
2019-09-19 09:24:14 +02:00
Alessandro Falappa
6dab9bb224
Fix pre-defined logging group documentation
...
See gh-18270
2019-09-19 09:19:24 +02:00
Johnny Lim
b70be97cbf
Polish
...
See gh-18281
2019-09-19 09:03:38 +02:00
Andy Wilkinson
d5adbbb626
Split appendices into multiple pages and include a ToC in each
...
Closes gh-16289
2019-09-17 09:44:40 +01:00
Andy Wilkinson
cc67213b1f
Correct capitalization of GemFire in the reference docs
...
Closes gh-18001
2019-09-16 11:28:50 +01:00
Stephane Nicoll
a0d7d52106
Polish "Add ROLLING_FILE_NAME_PATTERN for File Appender"
...
See gh-18151
2019-09-16 09:28:15 +02:00
Eddú Meléndez
4a3810a0f1
Add ROLLING_FILE_NAME_PATTERN for File Appender
...
This new property allows to customize `fileNamePattern` if it is set.
Otherwise, a default pattern remains. Also, new property is supported
`logging.pattern.rolling-file-name`.
See gh-18151
2019-09-16 09:15:59 +02:00
Johnny Lim
5b41c3b608
Polish
...
See gh-18192
2019-09-12 14:55:47 +02:00
Andy Wilkinson
f033016364
Allow @Component on mutable @ConfigurationProperties
...
Update configuration properties support to allow the `@Component`
annotation to be used on `@ConfigurationProperties` beans as long
as they are mutable.
This restores the behavior of Spring Boot 2.1 for mutable beans whilst
still allowing us to enforce the stricter rules for immutable value
object configuration properties.
Closes gh-18138
2019-09-09 23:04:50 -07:00
Andy Wilkinson
0074a7c662
Merge branch '2.1.x'
2019-09-09 14:03:55 +01:00
Andy Wilkinson
4f21b51a2b
Polish one sentence per line in the reference docs
2019-09-09 14:00:12 +01:00
Phillip Webb
f70c0b8fbb
Merge branch '2.1.x'
2019-09-04 22:20:27 -07:00
Phillip Webb
a3cde7fd8d
Fix typo
2019-09-04 22:20:14 -07:00
Phillip Webb
1851f7119f
Merge branch '2.1.x'
2019-09-04 13:53:28 -07:00
Phillip Webb
f1bbb2a017
Fix documentation typos
...
See gh-16718
2019-09-04 13:52:10 -07:00
Phillip Webb
5c665ddd55
Merge branch '2.1.x'
...
Closes gh-18120
2019-09-03 21:04:43 -07:00
Phillip Webb
624c118cdf
Polish "Document the pros and cons of MockMvc"
...
See gh-16718
2019-09-03 21:03:46 -07:00
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
2019-09-03 21:01:44 -07:00
dreis2211
b4350a9d96
Remove unnecessary blank lines
...
See gh-18089
2019-09-03 08:48:10 +02:00
Phillip Webb
58734873dd
Merge branch '2.1.x'
...
Closes gh-18081
2019-08-31 08:43:02 -07:00
Phillip Webb
e07889b092
Document that Filter beans are eagerly initialized
...
Closes gh-17814
2019-08-31 08:41:34 -07:00
Phillip Webb
117a2ecda9
Merge branch '2.1.x'
...
Closes gh-18080
2019-08-31 08:30:06 -07:00
Phillip Webb
7e60f4b32a
Clarify "YAML Shortcomings" documentation
...
Closes gh-17933
2019-08-31 08:29:03 -07:00
Phillip Webb
d655684135
Merge branch '2.1.x'
...
Closes gh-18079
2019-08-31 07:44:34 -07:00
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
2019-08-31 07:43:42 -07:00
Phillip Webb
85784ba6ea
Merge branch '2.1.x'
...
Closes gh-18025
2019-08-30 21:28:31 -07:00
Phillip Webb
1ff784ff54
Remove MBean shutdown warning from documentation
...
Closes gh-17988
2019-08-30 21:27:51 -07:00
Phillip Webb
51e71f7ff1
Merge branch '2.1.x'
...
Closes gh-18024
2019-08-30 21:25:31 -07:00
Phillip Webb
368eb566fb
Use versioned links in documentation
...
Update the reference documentation to use versioned links rather then
`/current/` whenever possible.
Closes gh-18000
2019-08-30 21:19:33 -07:00
Phillip Webb
f69b2669b3
Merge branch '2.1.x'
2019-08-30 19:16:19 -07:00
Phillip Webb
348d65b4fe
Polish documentation
2019-08-30 19:13:12 -07:00
Phillip Webb
dc870044c6
Merge branch '2.1.x'
2019-08-30 19:12:43 -07:00
Phillip Webb
7f9d143e01
Polish documentation
...
Update reference documentation source to use consistent attribute names
and fix a few formatting issues.
2019-08-30 17:11:14 -07:00
Phillip Webb
ee130cfb3f
Merge branch '2.1.x'
...
Closes gh-18023
2019-08-30 14:58:09 -07:00
Phillip Webb
572e491465
Remove Gemfire starter details from documentation
...
Closes gh-18002
2019-08-30 14:57:17 -07:00
Phillip Webb
ddbc1e5b0a
Merge branch '2.1.x'
...
Closes gh-18022
2019-08-30 14:53:21 -07:00
Phillip Webb
dbccb705a8
Clarify "Web Application Conditions" documentation
...
Update the reference documentation so that "Web Application Conditions"
also covers reactive contexts.
Closes gh-18005
2019-08-30 14:52:27 -07:00
Phillip Webb
d70519038b
Fix broken asciidoc syntax
...
See gh-18007
2019-08-29 21:18:51 -07:00
Phillip Webb
ca53780c43
Merge branch '2.1.x'
...
Closes gh-18007
2019-08-29 18:05:31 -07:00
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
2019-08-29 14:58:48 -07:00
Stephane Nicoll
cda310ba0a
Polish "Fix a broken Asciidoctor syntax"
...
See gh-17970
2019-08-27 11:11:57 +02:00
Johnny Lim
78a467f9d3
Fix a broken Asciidoctor syntax
...
See gh-17970
2019-08-27 11:10:39 +02:00
Madhura Bhave
48b5b6a24c
Polish "Added support for devtools YAML configuration"
...
See gh-17915
2019-08-23 14:37:54 -07:00
Andy Wilkinson
05e089601e
Remove default favicon and support for serving from classpath root
...
Closes gh-17925
2019-08-22 13:53:13 +01:00
Madhura Bhave
178746d678
Update Opaque Token Client Name following upstream changes
...
Closes gh-17846
2019-08-12 18:38:27 -07:00
Stephane Nicoll
2059147421
Merge branch '2.1.x'
...
Closes gh-17840
2019-08-12 11:04:56 +02:00
Stephane Nicoll
56c2a52ea4
Polish "Fix syntax errors in docs"
...
Closes gh-17835
2019-08-12 10:54:33 +02:00
Stephane Nicoll
d02000ecc0
Merge branch '2.1.x'
...
Closes gh-17840
2019-08-12 10:36:06 +02:00
dreis2211
2e32af4737
Fix syntax errors in docs
...
See gh-17835
2019-08-12 10:34:46 +02:00
Madhura Bhave
4208be0154
Merge branch '2.1.x'
...
Closes gh-17818
2019-08-08 16:26:53 -07:00
Madhura Bhave
47a9bb1c0e
Document that auto-configuration classes are not public API
...
Closes gh-16704
2019-08-08 16:26:04 -07:00
Stephane Nicoll
45915d085e
Merge branch '2.1.x'
...
Closes gh-17767
2019-08-02 17:35:39 +02:00
Stephane Nicoll
bacb4d1715
Polish "Refine back-off strategy of Neo4j SessionFactory"
...
See gh-17662
2019-08-02 17:15:22 +02:00
Andy Wilkinson
e7b94be9cd
Polish "Document `@EmbeddedKafka` and its interaction with Spring Boot"
...
See gh-15834
2019-07-23 17:20:46 +01:00
Artem Bilan
4e79408bb0
Document `@EmbeddedKafka` and its interaction with Spring Boot
...
See gh-15834
2019-07-23 16:59:04 +01:00
Stephane Nicoll
26ee9150b2
Document WebFilter is scanned by @WebFluxTest
...
See gh-17601
2019-07-23 09:01:32 +02:00
Stephane Nicoll
94a757113d
Document HandlerInterceptor is scanned by @WebMvcTest
...
See gh-17601
2019-07-23 08:57:09 +02:00
Stephane Nicoll
a1f32bbd7a
Merge branch '2.1.x'
...
Closes gh-17603
2019-07-22 15:29:58 +02:00
Stephane Nicoll
30fe10613d
Improve how to configure configuration keys of a custom starter
...
Closes gh-17573
2019-07-22 15:28:17 +02:00
Andy Wilkinson
ff9d0cf49b
Merge branch '2.1.x'
...
Closes gh-17588
2019-07-19 15:44:19 +01:00
Andy Wilkinson
74f0e42c98
Make it clearer when there will be no auto-configured MessageSource
...
Closes gh-17485
2019-07-19 15:44:00 +01:00