Skip to content

v0.5 of Mircoserver

Compare
Choose a tag to compare
@johnmcclean johnmcclean released this 11 Mar 21:46

New in Microserver 0.5

Main launch class has been changed from MicroServerStartup to MicroserverApp

screen shot 2015-03-11 at 9 44 10 pm

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

Java Doc : Microserver Core

Java Doc : Microserver Boot

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'