Stephane Nicoll
595fada2ff
Merge pull request #8660 from dreis2211:cleanup-equals-exceptions
...
* pr/8660:
Fix test assertions
8 years ago
dreis
1266642aba
Fix test assertions
...
Closes gh-8660
8 years ago
Stephane Nicoll
113279c1bc
Merge pull request #8678 from zeldan:patch-1
...
* pr/8678:
Fix propdeps-plugin url in doc
8 years ago
Dániel Zelei
cc30adf0df
Fix propdeps-plugin url in doc
...
Closes gh-8678
8 years ago
Stephane Nicoll
22869f78a9
Merge pull request #8718 from andersonkyle:fix-typo
...
* pr/8718:
Fix typo
8 years ago
Kyle Anderson
57977a654a
Fix typo
...
Closes gh-8718
8 years ago
Andy Wilkinson
a8788ba62c
Upgrade to Webjars Locator 0.32-1
...
Closes gh-8734
8 years ago
Andy Wilkinson
c49fb08c8f
Upgrade to Spring Loaded 1.2.7.RELEASE
...
Closes gh-8733
8 years ago
Andy Wilkinson
35ce980b38
Upgrade to Slf4j 1.7.25
...
Closes gh-8732
8 years ago
Andy Wilkinson
fb9ce48dc8
Upgrade to Lombok 1.16.16
...
Closes gh-8731
8 years ago
Andy Wilkinson
de504f3464
Upgrade to Jooq 3.8.7
...
Closes gh-8730
8 years ago
Andy Wilkinson
0a5732bb14
Upgrade to Jboss Logging 3.3.1.Final
...
Closes gh-8729
8 years ago
Andy Wilkinson
31419ab038
Upgrade to Hibernate Validator 5.2.5.Final
...
Closes gh-8728
8 years ago
Andy Wilkinson
617bacbc44
Upgrade to Jetty 9.3.17.v20170317
...
Closes gh-8727
8 years ago
Andy Wilkinson
8e9975624e
Upgrade to Groovy 2.4.10
...
Closes gh-8726
8 years ago
Andy Wilkinson
4530b607b3
Upgrade to Tomcat 8.5.12
...
Closes gh-8725
8 years ago
Andy Wilkinson
798146b5e1
Upgrade to Joda Time 2.9.9
...
Closes gh-8724
8 years ago
Andy Wilkinson
c05e8a634f
Upgrade to Undertow 1.3.28.Final
...
Closes gh-8723
8 years ago
Andy Wilkinson
89cd7311bb
Upgrade to Dropwizard Metrics 3.1.4
...
Closes gh-8722
8 years ago
Andy Wilkinson
42675cb04b
Upgrade to H2 1.4.194
...
Closes gh-8721
8 years ago
Andy Wilkinson
17793f4f67
Upgrade to Appengine 1.9.50
...
Closes gh-8720
8 years ago
Andy Wilkinson
a88c56dfdc
Start building against Spring Integration 4.3.9 snapshots
...
See gh-8713
8 years ago
Andy Wilkinson
2b6bcfd738
Start building against Spring Framework 4.3.8 snapshots
...
Closes gh-7949
See gh-8712
8 years ago
Stephane Nicoll
1624370986
Merge pull request #8594 from lexandro:master
...
* pr/8594:
Polish contribution
Fix invalid security example in doc
8 years ago
Stephane Nicoll
0ca07fbdc3
Polish contribution
...
Closes gh-8594
8 years ago
lexandro
36b28540ee
Fix invalid security example in doc
...
Closes gh-8580
8 years ago
Stephane Nicoll
cd76da9a4c
Avoid using immutable collections for configuration proprerties
...
Closes gh-8620
8 years ago
Stephane Nicoll
ed2164b97b
Merge pull request #8582 from vpavic:improve-redis-session-config
...
* pr/8582:
Improve `RedisSessionConfiguration` conditions
8 years ago
Vedran Pavic
17aad4f00c
Improve `RedisSessionConfiguration` conditions
...
Closes gh-8582
8 years ago
Stephane Nicoll
f72e0c08df
Add a note to ActiveMQ pooling in the doc
...
Closes gh-8598
8 years ago
Stephane Nicoll
bc157d5b4f
Polish
...
See gh-8621
8 years ago
Madhura Bhave
19da8d8271
Fix UnsupportedOperationException
...
Fixes gh-8602
8 years ago
Andy Wilkinson
2ddcf0e831
Avoid using File.renameTo(File) as it doesn't work on Windows
8 years ago
Stephane Nicoll
4158a6d50f
Fix typo
...
Closes gh-8574
8 years ago
Stephane Nicoll
095eb779e2
Merge pull request #8562 from eddumelendez:missing_cassandra_metadata
...
* pr/8562:
Add missing spring-data-cassandra metadata
8 years ago
Eddú Meléndez
251090b1e5
Add missing spring-data-cassandra metadata
...
This commit adds the missing
`spring.data.cassandra.repositories.enabled` in the metadata and the
documentation.
Closes gh-8562
8 years ago
Stephane Nicoll
633e75dce2
Fix typo
...
Closes gh-8563
8 years ago
Stephane Nicoll
e7922a574a
Polish
8 years ago
Stephane Nicoll
07c56c60ba
Make sure Hazelcast bootstraps before any JCache setup
...
This commit makes sure that if a `javax.cache.CacheManager` is required,
an auto-configured `HazelcastInstance` is fully resolved first. This
prevents the case where the JCache bootstrap actually starts an instance
early, followed by a second (potentially unwanted) instance created by the
regular auto-configuration.
Since the JCache implementation works with an `HazelcastInstance` behind
the scenes, if there is one `HazelcastInstance` configured and it has a
name, then we configure the `CacheProvider` to use that. Future Hazelcast
version will allow to pass the instance directly (i.e. not requiring an
actual name).
Closes gh-8484
8 years ago
Andy Wilkinson
d32c3a7f43
Correct the URL that's called to test servlet context resources
...
See gh-8299
Closes gh-8525
8 years ago
Andy Wilkinson
a2cf0455fd
Fix static resource handling when run in IDE or using Maven or Gradle
...
The changes made for gh-8299 attempted to make static resource
handling consistent across Jetty, Tomcat, and Undertow. They did so
for application's launched using JarLauncher or WarLauncher but did
not consider application's launched in an IDE or using spring-boot:run
in Maven or bootRun in Gradle.
Running in an IDE or via Maven or Gradle introduces two new
resource locations:
- Jars on the classpath with file protocol URLs (they are always
jar protocol URLs when using either launcher)
- Directories on the classpath from a project that is depended upon
and contains resources in META-INF/resources
This commit updates the factories for all three containers to handle
these new resources locations. The integration tests have also been
updated.
8 years ago
Madhura Bhave
67068fc83d
Ignore unresolvable nested placeholders
...
The NamePatternEnvironmentFilter used to throw an exception if
placeholders in property values could not be resolved.
Fixes gh-8510
8 years ago
Phillip Webb
f5aeac3658
Polish
8 years ago
Stephane Nicoll
9fb9a67c4b
Avoid early initializations
...
This commit flags the two `BeanPostProcessors` registered by the
embedded support as `synthetic` so that they don't trigger an early
initialization of other components.
Closes gh-8467
8 years ago
Stephane Nicoll
dac3810bc1
Fixup version numbers following release
8 years ago
Spring Buildmaster
2a83e80a9b
Next Development Version
8 years ago
Stephane Nicoll
dda84749ef
Upgrade to Spring Security OAuth 2.0.13.RELEASE
...
Closes gh-8423
8 years ago
Stephane Nicoll
3e570a3ee2
Upgrade to Spring Data Hopper.SR8
...
Closes gh-8443
8 years ago
Stephane Nicoll
f3537daff4
Merge pull request #8143 from michael-simons:doc-migration
...
* pr/8143:
Fix indentation
Clarify usage of @ImportResource in doc
8 years ago
Stephane Nicoll
09205a8fc8
Fix indentation
...
Closes gh-8143
8 years ago