Spring Boot 0.5.0.M6 Released
Spring Boot 0.5.0.M6 has been released and is now available in the Spring repo. Instructions for installing and using are on the project website or in github. There are loads of updates in this release, including:
- Auto-configuration reports to let you know what Spring Boot is doing on your behalf
- Remote shell support via CRaSH
- Support for JDK 8
- A new Aether based @Grab engine
- Lots of bug fixes
Here is a quick example that demonstrates the remote shell and auto-configuration report:
@Grab("spring-boot-starter-shell-remote")
@Controller
class MyRemote {
}
When you run this application using spring run example.groovy
you should see…