v0.5 of Mircoserver
New in Microserver 0.5
Main launch class has been changed from MicroServerStartup to MicroserverApp
Spring Boot Integration
Spring Boot support is added with v0.5, so now you can launch a Spring Boot application that runs on a Grizzly Server with Jersey 2 and Microserver Jersey / Spring Integration. Your Spring Boot apps can also take advantage of Microserver optimisations and enhancements such as co-locating services with shared Spring resources (you might want to do this, to reduce consumption of scarce resources such as datasource connections to critical dbs).
Bean validation
This version also includes validation via Jersey bean validation and hibernate validator.
Getting Microserver
Maven dependency
Microserver core
<dependency>
<groupId>com.aol.microservices</groupId>
<artifactId>microserver-core</artifactId>
<version>0.5</version>
</dependency>
Microserver Spring Boot
<dependency>
<groupId>com.aol.microservices</groupId>
<artifactId>microserver-boot</artifactId>
<version>0.5</version>
</dependency>
Gradle dependency
Microserver core
compile group: 'com.aol.microservices', name:'microserver-core', version:'0.5'
Microserver Spring Boot
compile group: 'com.aol.microservices', name:'microserver-boot', version:'0.5'