Dmytro Nosan
9923ffe9bd
Allow depended on beans to be identified by type
...
Prior to this commit, `AbstractDependsOnBeanFactoryPostProcessor`
could only identify depended on beans by name.
See gh-17020
2019-07-10 12:25:57 +01:00
Stephane Nicoll
852f4a280c
Fix supported java version range in documentation
...
Closes gh-17476
2019-07-10 12:48:50 +02:00
Andy Wilkinson
6748b20863
Prevent JUL loggers from being GCed once their level has been set
...
Fixes gh-17217
2019-07-09 19:51:55 +01:00
Stephane Nicoll
3fb15a502b
Remove outdated reference to Guava in the reference guide
...
Closes gh-17446
2019-07-09 18:00:57 +02:00
Andy Wilkinson
acd9b61c8e
Make Batch JPA auto-configuration back off without a DataSource
...
Fixes gh-17465
2019-07-09 15:46:45 +01:00
Andy Wilkinson
c5241f0e82
Remove accidental usage of com.hazelcast.util.Base64
...
Closes gh-17461
2019-07-09 15:03:31 +01:00
Madhura Bhave
cc6ef038f2
Move Slack Alert to the last possible step in the pipeline
...
Closes gh-17445
2019-07-08 11:07:09 -07:00
Andy Wilkinson
02bea78229
Retain as much Batch auto-config as possible without Spring JDBC
...
Closes gh-17451
2019-07-08 15:35:16 +01:00
Andy Wilkinson
a023f308ed
Make JDBC-based batch configurer back off without a DataSource
...
Closes gh-17449
2019-07-08 14:43:26 +01:00
Andy Wilkinson
7f85aba546
Auto-configure Data Mongo if user provides MongoDbFactory but no client
...
Previously, if a user defined a MongoDbFactory bean but did not define
a client bean, MongoDataAutoConfiguration would back off leaving the
context without a MongoTemplate, etc.
This commit reworks the auto-configuration so that only the
auto-configuration of a MongoDbFactory is dependent on the existence
of a Mongo client bean. Auto-configuration of the other components
that depend on a MongoDbFactory will now continue in the absence of a
Mongo client bean.
Closes gh-17416
2019-07-04 12:36:03 +01:00
Andy Wilkinson
7553b60e68
Test the Gradle Plugin against Gradle 5.5
...
Closes gh-17428
2019-07-04 10:05:57 +01:00
Phillip Webb
2f88dd735e
Polish
2019-07-03 15:52:51 -07:00
Phillip Webb
cd5f40aec2
Validate onFailure returned binding results
...
Update `ValidationBindHandler` so that any non-null result returned by
the parent `onFailure` method triggers re-validation.
Fixes gh-17421
2019-07-03 15:52:51 -07:00
Phillip Webb
d641a1e23a
Polish BindHandler javaodc
2019-07-03 15:52:51 -07:00
Andy Wilkinson
82fd4ce9b9
Fix empty context path warning when using Jetty with WebFlux
...
Previously, the context path was set to an empty string. The led to
Jetty logging a warning about an empty context path and then using
/ instead.
This commit avoids the warning while leaving the context path's end
result unchanged by setting the context path to /.
Closes gh-17399
2019-07-02 17:24:34 +01:00
Andy Wilkinson
e57579461a
Prevent endpoint's shutdown() method from being a destroy method
...
Closes gh-17407
2019-07-02 14:05:49 +01:00
Andy Wilkinson
5997886897
Add dependency management for Infinispan's Spring 5 modules
...
This commit adds dependency management for Infinispan's Spring 5
modules that are introduced in 9.4.9.Final. It also removes redundant
exclusions for the dependency management for its Spring 4 modules.
Closes gh-17346
2019-07-02 11:41:33 +01:00
Phillip Webb
206ba2ad86
Append chars not ints in getLettersAndDigits
...
Update `StringToEnumIgnoringCaseConverterFactory` so that the
`getLettersAndDigits` method correctly appends `char` elements
rather than `int` elements.
Closes gh-17327
2019-07-01 21:49:29 -07:00
Phillip Webb
88b6a3308c
Escape additional '{reference}' elements in asciidoc
...
Escape lines that look like variable references but should actually be
included verbatim.
Closes gh-17386
2019-07-01 11:39:49 -07:00
Phillip Webb
a81f37dd68
Escape '{reference}' elements in asciidoc files
...
Escape lines that look like variable references but should actually be
included verbatim.
Closes gh-17386
2019-07-01 11:02:05 -07:00
Andy Wilkinson
34e0db2c25
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17382
2019-07-01 15:57:21 +01:00
Andy Wilkinson
0c44584b44
Merge branch '1.5.x' into 2.0.x
2019-07-01 15:57:00 +01:00
Andy Wilkinson
b7884b50f6
Merge pull request #16894 from gavvvr
...
* gh-16894:
Fix persistent session property name in reference docs
Closes gh-16894
2019-07-01 15:54:43 +01:00
Kirill Gavrilov
c1bf04c66f
Fix persistent session property name in reference docs
...
See gh-16894
2019-07-01 15:54:13 +01:00
Andy Wilkinson
4083c721f2
Fix URL normalization when replacing /./ with /
...
Previously, a regular expression of /./ was used to replace /./ with
/. The '.'' in the expression matches any single character so the
replacement was more broadly applicable than it should have been. For
example, /a/ would be replaced with /.
This commit uses Pattern.LITERAL to compile the regular expression
from the CURRENT_DIR (/./) contant. This allows the constant to be
used to check for occurances of /./ in the string before attempting
replacement, while also ensuring that the '.' is treated literally.
Closes gh-17341
2019-07-01 15:42:54 +01:00
Andy Wilkinson
3bbe723718
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17378
2019-07-01 14:09:10 +01:00
Andy Wilkinson
1823f38203
Merge branch '1.5.x' into 2.0.x
2019-07-01 14:08:49 +01:00
Andy Wilkinson
bf271e415a
Align print margin column with Java Format's line wrapping
...
Closes gh-17377
2019-07-01 14:08:14 +01:00
Andy Wilkinson
c982289431
Merge pull request #17289 from nosan
...
* gh-17289:
Polish WebServiceTemplateBuilder
Closes gh-17289
2019-06-29 22:21:54 +01:00
Dmytro Nosan
ae184874e9
Polish WebServiceTemplateBuilder
...
See gh-17289
2019-06-29 22:19:03 +01:00
Andy Wilkinson
65b95f0d7b
Merge pull request #17342 from izeye
...
* gh-17342:
Fix typo in bomr.yaml
Closes gh-17342
2019-06-29 21:52:05 +01:00
Johnny Lim
4e1cc943f9
Fix typo in bomr.yaml
...
See gh-17342
2019-06-29 21:51:53 +01:00
Andy Wilkinson
8b4b6a32fa
Merge pull request #17358 from izeye
...
* gh-17358:
Remove System.out.println() in a test
Closes gh-17358
2019-06-29 21:19:02 +01:00
Johnny Lim
408035fb3f
Remove System.out.println() in a test
...
See gh-17358
2019-06-29 21:18:44 +01:00
Andy Wilkinson
5030364db7
Merge pull request #17357 from izeye
...
* gh-17357:
Add a missing quote in DebugLogbackConfigurator
Closes gh-17357
2019-06-29 21:15:00 +01:00
Johnny Lim
8dea74a2e9
Add a missing quote in DebugLogbackConfigurator
...
See gh-17357
2019-06-29 21:14:42 +01:00
Andy Wilkinson
f4e7b80651
Merge branch '2.0.x' into 2.1.x
...
See gh-17361
2019-06-29 20:38:18 +01:00
Andy Wilkinson
761856ac70
Merge branch '1.5.x' into 2.0.x
2019-06-29 20:29:16 +01:00
Andy Wilkinson
f9bd472192
Polish upgrade to spring-javaformat 0.0.15
...
See gh-17359
2019-06-29 20:27:47 +01:00
Phillip Webb
92bff3c328
Merge branch '2.0.x' into 2.1.x
2019-06-28 23:42:28 -07:00
Phillip Webb
cfeb0239b7
Merge branch '1.5.x' into 2.0.x
2019-06-28 23:28:34 -07:00
Phillip Webb
d91f27e11f
Fix Javadoc @Since checkstle violations
...
Apply consistent `@Since` tags and retrofit the existing code using a
best guess from the git history.
Closes gh-17360
2019-06-28 22:41:15 -07:00
Phillip Webb
6425fb6ec8
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17361
2019-06-28 21:34:35 -07:00
Phillip Webb
4f079803d2
Merge branch '1.5.x' into 2.0.x
...
Closes gh-17359
2019-06-28 21:29:20 -07:00
Phillip Webb
dc5c5702f8
Enforce stricter javadoc @Since rules
...
See gh-17360
2019-06-28 21:16:27 -07:00
Phillip Webb
9433ad2222
Ignore SpringMethodVisibility check
...
Ignore the new `SpringMethodVisibility` on released versions since
the required changes can introduce subtle bugs.
See gh-17359
2019-06-28 21:15:01 -07:00
Phillip Webb
b0fffbe42e
Upgrade to spring-javaformat 0.0.15
...
Closes gh-17359
2019-06-28 21:14:00 -07:00
Phillip Webb
9aa4887376
Merge branch '2.0.x' into 2.1.x
2019-06-28 14:14:52 -07:00
Phillip Webb
ed3e1e076d
Fix AbstractFilterRegistrationBean merge error
...
Merging 1.5.x accidentally broke `AbstractFilterRegistrationBean`
2019-06-28 14:13:59 -07:00
Phillip Webb
de35efd1ef
Merge branch '2.0.x' into 2.1.x
2019-06-28 12:21:57 -07:00