- 18 Dec, 2015 4 commits
-
-
Spring Buildmaster authored
-
Stephane Nicoll authored
* pr/4806: Fix typos
-
Johnny Lim authored
Closes gh-4806
-
Andy Wilkinson authored
Closes gh-4786
-
- 17 Dec, 2015 15 commits
-
-
Phillip Webb authored
ExitCodeGenerators is not going to be immediately used by spring-task so it can remain package-private for now. See gh-4757
-
Stephane Nicoll authored
Closes gh-4792
-
Phillip Webb authored
-
Stephane Nicoll authored
Closes gh-4644
-
Stephane Nicoll authored
-
Stephane Nicoll authored
-
Andy Wilkinson authored
Previously, the worker used non-daemon threads which meant that they prevented the JVM from shutting down. Ideally, we’d avoid this problem by closing the worker and access log receiver as part of stopping Undertow, however, due to an apparent bug in Undertow [1], it’s not possible to do so cleanly. This commit configures the access log worker to use daemon threads so that they do not prevent the JVM from shutting down. Unfortunately, this means that the threads will still be running after the context has been closed but before the JVM shuts down but that appears to be unavoidable due to the aforementioned Undertow bug. Closes gh-4793 [1] https://issues.jboss.org/browse/UNDERTOW-597
-
Andy Wilkinson authored
This reverts commit 00ba7bea. See gh-4786
-
Phillip Webb authored
Fixes gh-2872
-
Phillip Webb authored
-
Phillip Webb authored
See gh-4796
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-4440
-
Andy Wilkinson authored
-
Andy Wilkinson authored
This reverts commit acb3fb53. See gh-4789
-
- 16 Dec, 2015 21 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
Fixes gh-4388
-
Phillip Webb authored
Ensure that log configuration errors always get reported.
-
Phillip Webb authored
Fixes gh-4461
-
Phillip Webb authored
Fixes gh-4461
-
Phillip Webb authored
* pr/4784: Make loggers private static final
-
Kirill Vlasov authored
Apply consistency across all static loggers. Closes gh-4784
-
Phillip Webb authored
* pr/4783: Use Collections.isEmpty() instead of .size() == 0
-
Kirill Vlasov authored
Ensure that Collections.isEmpty() is used to check if there are no elements in a collections. This is more explicit and can be faster than calling .size(). Closes gh-4783
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-4719
-
Phillip Webb authored
-
Phillip Webb authored
Update the documentation to include a section about ServletContext initialization with embedded servlet containers. This update is to primarily highlight that `WebApplicationInitializers` and Servlet 3.0+ `ServletContainerInitializers` are not called. Fixes gh-4643
-
Dave Syer authored
If the user provides their own ServerProperties bean we want to peek at it to see if they set the port (and only that) when we are deciding if the actuator context needs to be created. This happens very early (in a @Condition) so we need to be very defensive. There are already quite a few checks in place to prevent a ServerProperties bean from being instantiated unless we really need it, and yet, when it is we can do more. This change creates the bean (and the ManagementProperties) in a throwaway BeanFactory using the same BeanDefinition as the main context. This ensures that when the main context bean is created it will be in the "natural" order and binding to the Environment can take place as normal. Fixes gh-4631
-
Andy Wilkinson authored
Closes gh-4790
-
Andy Wilkinson authored
Closes gh-4791
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-4789
-
Andy Wilkinson authored
The issue with Spring Data Gemfire has been resolved [1] See gh-4786 [1] https://github.com/spring-projects/spring-data-gemfire/commit/34665d16ec543e85afcde174194ba5fbff44b841
-
Andy Wilkinson authored
* gh-4506: Update launch.script to append to $log_file rather than overwriting it
-
Michitomo Nakahara authored
Closes gh-4506
-