Spring Boot 1.3.0.M1 Available Now
I'm pleased to announce that Spring Boot v1.3.0.M1 is available now from the Spring milestone repository. This release builds on Spring Framework 4.2.0.RC1 and provides a number of improvements and new features over Spring Boot 1.2. Highlights include:
- A new
spring-boot-devtools
module with support for automatic restart, LiveReload and remote update. - Extensive caching support for EhCache, Hazelcast, Infinispan, Redis, Guava or any compliant JSR-107 (JCache) implementation. Cache metric information is now also exposed via the actuator (when the underlying technology supports it).
- Improved metrics support, include export and aggregation features and big performance improvements if you're using Java 8.
- Fully executable JARs for Linux based operating systems, including "service" support. Starting a Boot application as a Linux service is now as easy as typing:
sudo ln -s /var/myapp/myapp.jar /etc/init.d/myapp
…