Andy Wilkinson
839e686c9e
Fix Checkstyle violation
6 years ago
Andy Wilkinson
f9b6c1ab4d
Include more information in NoSuchBeanDefinition failure analysis
...
Closes gh-13594
6 years ago
Andy Wilkinson
9e14fc6b8b
Cope with hanging call to connection.start() in JmsHealthIndicator
...
Previously, if the call to connection.start() hung, JmsHealthIndicator
would also hang and then never respond.
This commit introduces the use of an additional thread that waits for
up to 5 seconds for the connection to start. If the call to start
does not complete within that time, the connection is closed. The
call to close causes the call to start to throw an exception, thereby
stopping the hang and allowing the indicator to report that the
broker is down.
Closes gh-10809
6 years ago
Andy Wilkinson
51a1309ab7
Document need to use spring.data.rest rather than spring.data.web
...
Closes gh-14413
6 years ago
Andy Wilkinson
3f7a01fd27
Use ApplicationContextRunner in SpringDataWebAutoConfigurationTests
...
See gh-14413
6 years ago
Stephane Nicoll
cc8464027c
Merge pull request #14460 from ruslanys
...
* pr/14460:
Polish "Remove duplicate -l option for init command"
Remove duplicate -l option for init command
6 years ago
Stephane Nicoll
6e6c22c0ae
Polish "Remove duplicate -l option for init command"
...
Closes gh-1446
6 years ago
Ruslan Molchanov
71cf472116
Remove duplicate -l option for init command
...
See gh-14460
6 years ago
Andy Wilkinson
24eefcc1c6
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
335afdb9d9
Upgrade to GemFire 8.2.12
...
Closes gh-14739
6 years ago
Andy Wilkinson
c6fdb4f0f2
Improve documentation of Quartz DataSource customization
...
Closes gh-12780
6 years ago
Andy Wilkinson
33e0b12d46
Merge pull request #14735 from Heemang Han
...
* gh-14735:
Correct TIP typo in the documentation
6 years ago
Hanope
8b08f04e39
Correct TIP typo in the documentation
...
Closes gh-14735
6 years ago
Andy Wilkinson
73122fa8f3
Improve documentation of supported JSON mapping libraries
...
Closes gh-14703
6 years ago
Andy Wilkinson
f2446f78df
Align Session Redis tests with changes in latest Apple snapshots
...
See gh-14732
6 years ago
Andy Wilkinson
1b4a60e65c
Start building against Spring Session snapshots for Apple-SR6
...
See gh-14732
6 years ago
Andy Wilkinson
e2b589547c
Start building against Spring Data snapshots for Kay-SR11
...
See gh-14728
6 years ago
Andy Wilkinson
a99b5ab96e
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
d6f01951f4
Start building against Spring Data snapshots for Ingalls-SR16
...
See gh-14727
6 years ago
Andy Wilkinson
508bfda9ad
Start building against Spring Framework 5.0.10 snapshots
...
See gh-14722
6 years ago
Andy Wilkinson
f5367a9e1f
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
c428eaa8c0
Start building against Spring Framework 4.3.20 snapshots
...
See gh-14721
6 years ago
Andy Wilkinson
07dd689c9c
Polish
6 years ago
Andy Wilkinson
d20dfa4f2f
Merge pull request #14720 from Christoph Dreis
...
* gh-14720:
Fix @Cacheable typo
6 years ago
dreis2211
e6313fd96f
Fix @Cacheable typo
...
Closes gh-14720
6 years ago
Andy Wilkinson
9afd6f53e5
Document need for -parameters compilation with @SpyBean and @Cacheable
...
Closes gh-13945
6 years ago
Andy Wilkinson
4f51a83ab3
Add a note recommending the use of containers' multipart upload
...
Closes gh-2958
6 years ago
Andy Wilkinson
d3b3c8c64e
Honour management.metrics.web.server.auto-time-requests with WebFlux
...
Closes gh-13895
6 years ago
Andy Wilkinson
1f34da9025
Document application plugin's need for mainClassName to be set
...
Closes gh-14250
6 years ago
Andy Wilkinson
5d3f30ee94
Honour SSL key and trust store providers when configuring Netty
...
Closes gh-14714
6 years ago
Andy Wilkinson
d6d59edb35
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
52361e6400
Honour SSL key and trust store providers when configuring Undertow
...
Closes gh-14713
6 years ago
Stephane Nicoll
8600489775
Merge pull request #14707 from dreis2211
...
* pr/14707:
Remove unused fields in tests
6 years ago
dreis2211
55ec016bac
Remove unused fields in tests
...
Closes gh-14707
6 years ago
Andy Wilkinson
bbdd6cc9cb
Merge branch '1.5.x'
6 years ago
Andy Wilkinson
2c7b74db00
Merge pull request #14708 from Johnny Lim
...
* gh-14708:
Fix broken Asciidoctor syntax
6 years ago
Johnny Lim
2ba3080508
Fix broken Asciidoctor syntax
...
Closes gh-14708
6 years ago
Andy Wilkinson
ca329d3d03
Update Jersey indicator class to one that requires the Servlet API
...
Previously, if WebFlux and Jersey were on the classpath, but there was
no Servlet API (and no embedded container) on the classpath, the web
application type would be prevented from being reactive. The absence
of the Servlet API would then prevent the web application type from
being servlet so it would be none.
By contrast, if Spring MVC was on the classpath in place of Jersey
the absence of the Servlet API would allow the web application type to
be reactive. This happened because the Spring MVC indicator class is
DispatcherServlet which requires the Servlet API.
This commit updates the Jersey indicator class to be ServletContainer.
This class is both an HttpServlet and a Filter so it too requires the
Servlet API and, therefore, further aligns the deduction behaviour for
Jersey and Spring MVC.
Closes gh-14701
6 years ago
Phillip Webb
6aedb69443
Update copyright year for changed files
6 years ago
Phillip Webb
456d1af443
Polish
6 years ago
Madhura Bhave
cdc6cfcaa8
Publish release notes after artifacts have been promoted
...
Closes gh-14604
6 years ago
Stephane Nicoll
febaf15b61
Guard WebApplicationType detection in case spring web is not present
...
Closes gh-14589
6 years ago
Andy Wilkinson
8573edc03e
Provide complete dependency management for Micrometer
...
Closes gh-14700
6 years ago
Andy Wilkinson
ad647ba073
Make JSON-B auto-config back of if no JSON-P implementation is available
...
Closes gh-14675
6 years ago
Andy Wilkinson
8ee4c5e4a1
Use offical JSON API jar rather than Geronimo's in Artemis starter
...
Closes gh-14691
6 years ago
Andy Wilkinson
0ad0785bf7
Provide complete dependency management for Apache Johnzon
...
Closes gh-14692
6 years ago
Andy Wilkinson
7490d8b99d
Make JSON-B auto-config back off when no implementation is available
...
Previously, the JSON-B auto-configuration would be enabled when the JSON-B API was
on the classpath. This led to a failure if there was no implementation available.
The JSON-B API loads an implementation using the service loader. This commit updates
the auto-configuration to be conditional on the presence of a
META-INF/services/javax.json.bind.spi.JsonbProvider file on the classpath.
Closes gh-14675
6 years ago
Stephane Nicoll
1da5d3462c
Merge pull request #14620 from Hanope
...
* pr/14620:
Simplify escaping of newline characters when publishing release notes
6 years ago
Hanope
31a5bfdcba
Simplify escaping of newline characters when publishing release notes
...
Closes gh-14620
6 years ago
Andy Wilkinson
e7f100d5d7
Improve test coverage of PropertiesMeterFilter
...
Closes gh-14689
6 years ago