Sam Brannen
f7263abbf0
Fix broken links in Testing chapter
6 years ago
Spring Buildmaster
2a6da6a623
Next Development Version
6 years ago
Rossen Stoyanchev
92b3f2aee7
Document timeout configuration for Reactor HttpClient
...
Issue: SPR-17241
6 years ago
Juergen Hoeller
80e52de231
Upgrade to HtmlUnit 2.33 and Apache Johnzon 1.1.10
6 years ago
Juergen Hoeller
75627617c9
Ordered streams consistently operate on resolved bean instances
...
Issue: SPR-17272
6 years ago
Juergen Hoeller
3f5a7bbf04
Remove snapshot repository from build setup
6 years ago
Stephane Nicoll
093a863906
Upgrade to Gradle 4.10.2
6 years ago
Stephane Nicoll
90c29b3af3
Upgrade to Reactor Californium RELEASE
6 years ago
Sebastien Deleuze
f7839675f6
Don't set role in Kotlin bean DSL unless specified
...
Issue: SPR-17275
6 years ago
Sebastien Deleuze
47d6e91227
Leverage non-default ctor support in Kotlin bean DSL
...
Since non-default constructors are now evaluated for autowiring,
there is no need anymore for setting autowiring mode or exposing
it in Kotlin bean DSL.
Issue: SPR-17292
6 years ago
Juergen Hoeller
b6b880ce27
Polishing
6 years ago
Rossen Stoyanchev
7481d73456
WebFlux HandshakeInfo exposes the remoteAddress
...
Issue: SPR-17192
6 years ago
Rossen Stoyanchev
288a9ecd18
Exposes maxFramePayloadLength for Reactor Netty
...
Issue: SPR-16228
6 years ago
Juergen Hoeller
a278e878e8
Upgrade to Jackson 2.9.7
6 years ago
Juergen Hoeller
082c524cbe
Polishing
6 years ago
Juergen Hoeller
d3c08552e9
Revisit GenericApplicationContext.registerBean constructor handling
...
Support for Kotlin primary constructor and non-default public constructors in addition to default instantiation, aligned with AnnotationConfigApplicationContext and model attribute processing.
Issue: SPR-17292
6 years ago
Juergen Hoeller
50c9542796
Prefer explicit "org.quartz.scheduler.instanceName" over bean name
...
Issue: SPR-16884
6 years ago
Rossen Stoyanchev
a6f9c4c599
LogFormatUtils is declared abstract
6 years ago
Sam Brannen
af58263744
Fix formatting in Testing chapter
6 years ago
Arjen Poutsma
8a4835368d
Use doOnDiscard to free internally queued data buffers
...
Issue: SPR-17246
6 years ago
Juergen Hoeller
1756f83701
Defensively expect concurrent registration of BeanPostProcessors
...
Declaring beanPostProcessors (and also embeddedValueResolvers) as CopyOnWriteArrayList prevents ConcurrentModificationExceptions in case of concurrent registration/access attempts.
Issue: SPR-17286
6 years ago
Brian Clozel
d94e9225f4
Switch to Reactor Californium SNAPSHOTs
6 years ago
Juergen Hoeller
65ca7f4909
Polishing
6 years ago
anton0xf
0204b082b1
Fix jdbc template error messages generation
6 years ago
Sam Brannen
5b25aaacb6
Apply consistent formatting in Testing chapter
...
This commit also fixes a few typos and broken links.
6 years ago
Sam Brannen
6431b25045
Revise Testing chapter for technical correctness
...
This commit also fixes some broken links and typos.
6 years ago
Sam Brannen
745aeda581
Fix typos in testing sections of Reference Manual
6 years ago
Juergen Hoeller
c634b2fae7
ResolvableType-based resolution uses BeanNamesByType cache if possible
...
Issue: SPR-17282
6 years ago
Jay Bryant
00a3afcda8
Edit the Web chapter of the reference documentation
...
I edited for spelling, punctuation, grammar, usage,
and corporate voice. I also added links and cross-references.
6 years ago
Jay Bryant
b29a278b2a
Edit Data Access part of the reference documentation
...
I edited the Data Access chapter for spelling, punctuation,
grammar, usage, corporate voice, and clarity.
I also added links and cross-references.
6 years ago
Jay Bryant
95ff22cb7e
Edit the testing part of the reference documentation
...
I edited for spelling, punctuation, grammar, usage,
and corporate voice.
I also added cross-references and links to the Javadoc.
6 years ago
Jay Bryant
395e3d008c
Edit the core content reference documentation
...
I edited for the usual stuff: spelling, punctuation,
grammar, formatting, usage, and voice.
6 years ago
Brian Clozel
d0ada5653f
Polish
...
See: SPR-17054
6 years ago
Juergen Hoeller
0948edb39d
Nested configuration class introspection check on concrete class
...
Issue: SPR-16839
6 years ago
Juergen Hoeller
c8869d99f5
Deprecate autowire attribute on @Bean annotation
...
Issue: SPR-17281
6 years ago
Juergen Hoeller
69e8bcdf40
Checkstyle updates from ASM master
...
Issue: SPR-17267
6 years ago
Juergen Hoeller
c385a1de83
Polishing
6 years ago
Arjen Poutsma
88ab911cf1
Provide matched pattern information in WebFlux fn
...
This commit stores the first matching path pattern in the attribute
`RouterFunctions.MATCHING_PATTERN_ATTRIBUTE`.
Issue: SPR-17098
6 years ago
Juergen Hoeller
51f7a3e40f
Polishing
6 years ago
Juergen Hoeller
34663300a6
Avoid regex pattern matching for simple String replacement steps
...
Issue: SPR-17279
6 years ago
Simon Bowring
cc87fbcb7f
Fix javadoc comments to match behaviour
6 years ago
Sebastien Deleuze
c4aea626fe
Update Kotlin bean DSL with new BeanDefinition methods
...
Issue: SPR-17275
6 years ago
Arjen Poutsma
a680880a9b
Restore attributes for failed AND/OR request predicates
...
This commit restores the attributes when either of the predicates in
an AND/OR conjunction is false.
Issue: SPR-17210
6 years ago
Juergen Hoeller
8e83f140d4
Polishing
6 years ago
Rossen Stoyanchev
db8e9eafb2
Add LogFormatUtils
...
1. Helper method to eliminate duplication in formatting (de-)serialized
values for logging introduced with prior commit #e62298.
2. Helper method for TRACE vs DEBUG logging with different details.
Issue: SPR-17254
6 years ago
Juergen Hoeller
41d4cb5cbf
Ordered stream access on ObjectProvider with strong order guarantees
...
Issue: SPR-17272
6 years ago
Rossen Stoyanchev
12240c7524
Apply formatValue to a few remaining places
...
Issue: SPR-17254
6 years ago
Rossen Stoyanchev
e62298eaad
Truncate logged encoded and decoded values if necessary
...
At DEBUG show up to 100 chars, at TRACE show full formatted value.
Note that the formatValue helper method is duplicated a number of times
in this commit. A utility method will likely be added in spring-core
through an extra commit.
Issue: SPR-17254
6 years ago
Juergen Hoeller
66c66baa8f
Upgrade to Rhino 1.7.10
...
Includes reordering of web dependency declarations.
6 years ago
Rossen Stoyanchev
cf9641686b
StompSubProtocolHandler allows version 1.0
...
Issue: SPR-17258
6 years ago