Phillip Webb
5ab072be9c
Polish
9 years ago
Stephane Nicoll
6a291777da
Merge pull request #6066 from izeye:polish-20160530
...
* pr/6066:
Polish
9 years ago
Johnny Lim
8704e4869d
Polish
...
Closes gh-6066
9 years ago
Phillip Webb
0fa4d2e260
Make SocialAutoConfigurerAdapter/Properties public
...
Fixes gh-6078
9 years ago
Phillip Webb
454d8581d0
Use defined Locale for BindFailureAnalyzerTests
...
Update BindFailureAnalyzerTests so that localized messages are not used.
Fixes gh-6106
9 years ago
Dave Syer
6712de586b
Merge remote-tracking branch 'origin/1.3.x'
9 years ago
Dave Syer
31fc1cc6f2
Update Spring OAuth to 2.0.10
9 years ago
Stephane Nicoll
483da2615b
Merge pull request #6114 from izeye:typo-20160603
...
* pr/6114:
Fix typos
9 years ago
Johnny Lim
5de9516255
Fix typos
...
Closes gh-6114
9 years ago
Andy Wilkinson
ce68fdf515
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
1037239efc
Upgrade to Dependency Management Plugin 0.5.7.RELEASE
...
Closes gh-6105
9 years ago
Andy Wilkinson
277ceb7425
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
9bbdbae178
Merge pull request #6056 from Martin Lippert
...
* gh-6056:
Check factory method metadata to avoid NPE in devtools condition
9 years ago
Martin Lippert
efd541d26b
Check factory method metadata to avoid NPE in devtools condition
...
Closes gh-6056
9 years ago
Andy Wilkinson
a3f4b3c704
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
f3e9f1e6e3
Polish FileSystemWatcher and improve its thread safety
...
- Limit shared state between FileSystemWatcher and the watching thread
- Use a private monitor rather than synchronizing on this
- Use a Runnable implementation rather than subclassing Thread
- Synchronize consistently when reading and writing state
Closes gh-6039
9 years ago
Andy Wilkinson
436b58acbf
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
3772d9f937
Update JarURLConnection to only require file read permission
...
Previously, JarURLConnection didn't override getPermission(). This
meant that it required all permissions. This was at odds with the
Oracle JVM's concrete sun.net.www.protocol.jar.JarURLConnection which
overrides getPermission to return a FilePermission with the read
action for the path of the underlying jar.
This commit updates our JarURLConnection to align its behaviour with
sun.net.www.protocol.jar.JarURLConnection.
Closes gh-5411
9 years ago
Andy Wilkinson
ac5696e13c
Upgrade to Spring AMQP 1.6.0.RELEASE
...
Closes gh-6099
9 years ago
Andy Wilkinson
9bb1151178
Upgrade to MariaDB Java Client 1.4.5
...
Closes gh-6098
9 years ago
Andy Wilkinson
cde06444e0
Upgrade to Infinispan 8.2.2.Final
...
closes gh-6097
9 years ago
Andy Wilkinson
9f2a482f91
Upgrade to Jersey 2.23
...
Closes gh-6096
9 years ago
Andy Wilkinson
bd15d41500
Upgrade to Log4j2 2.6
...
Closes gh-6095
9 years ago
Andy Wilkinson
dfaf02b220
Upgrade to Joda Time 2.9.4
...
Closes gh-6093
9 years ago
Andy Wilkinson
68587f466e
Upgrade to Hazelcast 3.6.3
...
Closes gh-6092
9 years ago
Andy Wilkinson
fdd76869ec
Upgrade to App Engine API 1.9.38
...
Closes gh-6091
9 years ago
Andy Wilkinson
54c68f5597
Upgrade to Spring REST Docs 1.1.0.RELEASE
...
Closes gh-6077
9 years ago
Andy Wilkinson
53061fb8d7
Upgrade to jOOQ 3.8.2
...
Closes gh-6064
9 years ago
Andy Wilkinson
0dd0cef054
Upgrade to HTMLUnit 2.21
...
Closes gh-5954
9 years ago
Andy Wilkinson
455aa05bc6
Provide dependency management for xml-apis:xml-apis
...
Closes gh-6102
9 years ago
Andy Wilkinson
202552b9fb
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
28bd6d60c8
Revert "Upgrade to Tomcat 8.0.35"
...
This reverts commit 66e093ed0d
. There's
a regression [1] in Tomcat 8.0.35 that causes it to throw an NPE when
it scans a jar file without a manifest. It's already been fixed [2].
See gh-6087
[1] https://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/scan/StandardJarScanner.java?annotate=1742274#l369
[2] https://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/scan/StandardJarScanner.java?annotate=1744197#l369
9 years ago
Andy Wilkinson
84b7b25076
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
9ec4e5c74a
Upgrade to Spring REST Docs 1.0.2.RELEASE
...
Closes gh-6090
9 years ago
Andy Wilkinson
d0df8cbe51
Upgrade to HSQLDB 2.3.4
...
Closes gh-6089
9 years ago
Andy Wilkinson
055c318506
Upgrade to Jetty 9.2.17.v20160517
...
Closes gh-6088
9 years ago
Andy Wilkinson
66e093ed0d
Upgrade to Tomcat 8.0.35
...
Closes gh-6087
9 years ago
Andy Wilkinson
b2413850c4
Upgrade to Embedded Mongo 1.50.5
...
Closes gh-6086
9 years ago
Andy Wilkinson
a5fdc05d82
Upgrade to H2 1.4.192
...
Closes gh-6085
9 years ago
Phillip Webb
433f5e7930
Configure TestRestTemplate using builder
...
Update SpringBootTestContextCustomizer to create the TestRestTemplate
using the RestTemplateBuilder whenever possible.
Fixes gh-5509
9 years ago
Phillip Webb
e1d74627f5
Make test auto-configuration classes public
...
Make test auto-configuration classes public so that they can be used
by others with @AutoConfigureBefore/@AutoConfigureAfter.
Fixes gh-6073
9 years ago
Phillip Webb
b84330663d
Update spring-boot-sample-test REST code
...
Update RemoteVehicleDetailsService and the related test to use the new
RestTemplateBuilder class and @RestClientTest annotation.
See gh-6030
See gh-5507
9 years ago
Phillip Webb
0a475946a1
Document RestTemplateBuilder and @RestClientTest
...
See gh-6030
See gh-5507
9 years ago
Phillip Webb
2eafb3d887
Add @RestClientTest support
...
Add @RestClientTest annotation that can be used when testing REST
clients. Provides auto-configuration for a MockRestServiceServer which
can be used when the bean under test builds a single RestTemplate
via the auto-configured RestTemplateBuilder.
Closes gh-6030
9 years ago
Phillip Webb
b38231021d
Provide web client Auto-configuration
...
Add auto-configuration for use with typical web clients. Currently
client auto-configuration consists of a RestTemplateBuilder
pre-configured with HttpMessageConverters.
Closes gh-5507
9 years ago
Phillip Webb
b641e63466
Add RestTemplateBuilder support
...
Add a RestTemplateBuilder that allows RestTemplates to be easily created
and configured.
See gh-5507
9 years ago
Phillip Webb
e664d585d9
Allow MockRest static imports
...
Update checkstyle rules to allow static imports from
MockRestRequestMatchers and MockRestResponseCreators.
9 years ago
Phillip Webb
bc6f1cfdf3
Polish
9 years ago
Stephane Nicoll
68040c952f
Merge pull request #6075 from izeye:patch-49
...
* pr/6075:
Fix default value for `spring.rabbitmq.connection-timeout`
9 years ago
Johnny Lim
d28c1890a2
Fix default value for `spring.rabbitmq.connection-timeout`
...
Closes gh-6075
9 years ago