Andy Wilkinson
d4e19f8170
Auto-configure jOOQ after transaction auto-configuration
...
jOOQ auto-configuration will make use of a PlatformTransactionManager
bean if available. This commit ensures that jOOQ is auto-configured
after transaction auto-configuration, thereby ensuring that any
auto-configuration PlatformTransactionManager bean can be consumed.
Closes gh-11052
7 years ago
Stephane Nicoll
1fc3750c6d
Merge pull request #11108 from izeye:broken-asciidoctor-syntax-20171122
...
* pr/11108:
Fix broken Asciidoctor syntax
7 years ago
Johnny Lim
8b917abeab
Fix broken Asciidoctor syntax
...
Closes gh-11108
7 years ago
Andy Wilkinson
811e8df980
Upgrade to Aspectj 1.8.13
...
Closes gh-11095
7 years ago
Andy Wilkinson
89d27e58d3
Close input stream after adding entry to jar in DevTools tests
...
Closes gh-11089
7 years ago
Andy Wilkinson
85dc89e1b4
Make serialization of @ConfigurationProperties beans more defensive
...
Previously, serialization of a @ConfigurationProperties bean to JSON
would fail if:
- A property on the bean returned the bean (the bean was
self-referential)
- An exception was thrown when attempting to retrieve a property's
value.
This commit makes the serialization more defensive by skipping any
property that is affected by either of the problems described above.
Debug logging has been added to aid diagnosis of missing properties.
Closes gh-10846
7 years ago
Andy Wilkinson
2e320ef859
Upgrade to Thymeleaf 2.1.6.RELEASE
...
Closes gh-10989
7 years ago
Stephane Nicoll
9e051e72e2
Add reference to @EntityScan for MongoDB
...
Closes gh-10947
7 years ago
Stephane Nicoll
f975e8d363
Merge pull request #10941 from izeye:null-check
...
* pr/10941:
Add missing null check in FileSystemWatcher.stopAfter()
7 years ago
Johnny Lim
b965171b41
Add missing null check in FileSystemWatcher.stopAfter()
...
Closes gh-10941
7 years ago
Stephane Nicoll
373f7db3b5
Add missing supported source version
...
Closes gh-10929
7 years ago
Andy Wilkinson
963cfea3bb
Start building against Spring Framework 4.3.13 snapshots
...
See gh-10680
7 years ago
Andy Wilkinson
33796e7015
Upgrade to Spring Ws 2.4.2.RELEASE
...
Closes gh-10914
7 years ago
Andy Wilkinson
d0272e452c
Upgrade to Spring Cloud Connectors 1.2.5.RELEASE
...
Closes gh-10913
7 years ago
Andy Wilkinson
6756a7de7d
Upgrade to Freemarker 2.3.27-incubating
...
Closes gh-10912
7 years ago
Andy Wilkinson
61bceaf933
Upgrade to Solr 5.5.5
...
Closes gh-10911
7 years ago
Andy Wilkinson
0f451b3079
Upgrade to Commons Pool2 2.4.3
...
Closes gh-10910
7 years ago
Andy Wilkinson
0d01d7bb5b
Upgrade to Undertow 1.4.21.Final
...
Closes gh-10909
7 years ago
Andy Wilkinson
bd6a86c85f
Upgrade to Appengine Sdk 1.9.59
...
Closes gh-10908
7 years ago
Andy Wilkinson
e7d9014b3b
Use archive.apache.org to download toTomEE binaries
...
Closes gh-10905
7 years ago
Andy Wilkinson
054ce2865c
Protect against partial visibility of Bean Validation API
...
On WebSphere Liberty, the javax.validation package may be visible but
other javax.validation packages upon which it depends may not be
visible. This can lead to an incorrect assumption that the Bean
Validation API is available when, in fact, it is only partially
available.
Add an additional check for the availability of a class in the
javax.validation.bootstrap package to ensure that it's not just the
javax.validation package that's available.
Closes gh-10877
7 years ago
Stephane Nicoll
f18521913c
Merge pull request #10811 from dreis2211:typo-fixes-documentation
...
* pr/10811:
Fix typos in ApplicationArguments and Library
7 years ago
dreis2211
605e95145a
Fix typos in ApplicationArguments and Library
...
Closes gh-10811
7 years ago
Stephane Nicoll
fc3d25d705
Properly document spring.data.neo4j.open-in-view's default value
...
Closes gh-10826
7 years ago
Stephane Nicoll
37d229b1d6
Merge pull request #10805 from izeye:unused-20171029
...
* pr/10805:
Remove unnecessary assignments
7 years ago
Johnny Lim
4979af9fa5
Remove unnecessary assignments
...
Closes gh-10805
7 years ago
Stephane Nicoll
03174277b4
Merge pull request #10806 from izeye:handle-null-early
...
* pr/10806:
Handle null early in Sanitizer.sanitize()
7 years ago
Johnny Lim
c718880354
Handle null early in Sanitizer.sanitize()
...
Closes gh-10806
7 years ago
Stephane Nicoll
4358638266
Merge pull request #10810 from dreis2211:documentation-typos
...
* pr/10810:
Fix typos in AutoConfigureRestDocs
7 years ago
dreis2211
27d569e25e
Fix typos in AutoConfigureRestDocs
...
Closes gh-10810
7 years ago
Stephane Nicoll
425c8bc4a9
Merge pull request #10612 from mdeinum:master
...
* pr/10612:
Polish JobLauncherCommandLineRunner
7 years ago
Marten Deinum
ab3d65ccae
Polish JobLauncherCommandLineRunner
...
The JobLauncherCommandLineRunner reassigned method arguments inside the
merge method. Instead of reassigning the method argument just return
the new instance directly.
Also some minor cleanup (unnesseccary null check and continue keyword).
Closes gh-10612
7 years ago
Stephane Nicoll
51551feace
Merge pull request #10774 from rweisleder:gh-8006
...
* pr/10774:
Remove static Boot version from documentation
7 years ago
Roland Weisleder
feb842c487
Remove static Boot version from documentation
...
Closes gh-10774
7 years ago
Stephane Nicoll
81e33dc801
Fix NPE in url is null and no embedded database is available
...
Closes gh-10626
7 years ago
Stephane Nicoll
33ff2407e4
Add a note about env variables and Microsoft Windows
...
Closes gh-10727
7 years ago
Andy Wilkinson
8df5833b2a
Upgrade to Spring Ws 2.4.1.RELEASE
...
Closes gh-10730
7 years ago
Andy Wilkinson
46237c97fa
Upgrade to Hibernate Validator 5.3.6.Final
...
Closes gh-10729
7 years ago
Andy Wilkinson
fa5085f355
Upgrade to Aspectj 1.8.12
...
Closes gh-10728
7 years ago
Stephane Nicoll
e7097844dc
Polish
7 years ago
Andy Wilkinson
9e6e200d8d
Describe how to handle application events from descendant contexts
...
Closes gh-8899
7 years ago
Stephane Nicoll
c88559e073
Add a section on user configuration and slicing
...
Closes gh-7999
7 years ago
Stephane Nicoll
42fe8c1f38
Document effect of user configuration on slicing
...
Closes gh-10709
7 years ago
Stephane Nicoll
53335c069c
Fix typo
...
Closes gh-10687
7 years ago
Stephane Nicoll
00142dc70f
Fixup version numbers following release
7 years ago
Spring Buildmaster
c0f9f64776
Next Development Version
7 years ago
Andy Wilkinson
44b1f582ad
Upgrade to GemFire 8.2.7
...
Closes gh-10651
7 years ago
Andy Wilkinson
dfb87c67fb
Merge pull request #10635 from Janne Valkealahti
...
* gh-10635:
Fix typo in documentation
7 years ago
Janne Valkealahti
ac2bbea091
Fix typo in documentation
...
- As error handling sample is using `CustomErrorType`, fix
description which mentions `CustomerErrorType`.
7 years ago
Andy Wilkinson
ffdff1cdc2
Consider multiple MBeanExporters when excluding beans from export
...
Closes gh-10632
7 years ago