A convenient modular engine for Microservices. Microserver plugins offer seamless integration with Spring (core), Jersey, Guava, Tomcat, Grizzly, reactive programming, Hibernate (& Spring Data), Spring Boot, Codahale Metrics, Swagger and more to come!
Install Microserver with Grizzly, Jackson and Jersey (Gradle config below)
compile group: 'com.oath.microservices', name:'micro-grizzly-with-jersey', version:'x.yz'
Install Microserver with Tomcat, Jackson and Jersey (Gradle config below)
compile group: 'com.oath.microservices', name:'micro-tomcat-with-jersey', version:'x.yz'
Create and run a simple app
@Rest
@Path("/test")
public class SimpleApp {
public static void main(String[] args){
new MicroserverApp(()->"test-app").run();
}
@GET
public String myEndPoint(){
return "hello world!";
}
}
Browse to http://localhost:8080/test-app/test
See the response hello world!
Add plugins by adding them to your build file - rerun the app to get new end points, Spring beans and more!
Return any reactive-streams Publisher from your REST end point to make them execute asynchronously automatically.
E.g. Using Future from cyclops-react
@GET
public Future<String> myEndPoint(){
return Future.of(()->{
sleep();
return "hello world!";
}, Executors.newFixedThreadPool(1));
}
Would be equivalent to the following code
@GET
public void myEndPoint(@Suspended AsyncResponse asyncResponse){
Future.of(()->{
sleep();
asyncResponse.resume("hello world!");
return 1;
}, Executors.newFixedThreadPool(1));
}
Microserver is a plugin engine for building Spring and Spring Boot based microservices. Microserver supports pure microservice and micro-monolith development styles. The micro-monolith style involves packaging multiple services into a single deployment - offering developers the productivity of microservice development without the operational risk. This can help teams adopt a Microservices architecture on projects that are currently monoliths.
Microserver plugins are orthogonal to Microservices. They solve a common problem in Microservice development whereby services are broken up and deployed separately but the code remains entangled in a monolithic common library. By making use of a plugin system that follows the same modular architectural principals as microservice development, teams can keep cross-service concerns and infrastructure in properly size, coherent and cohesive plugin modules.
Microserver (& Cyclops) have a plugin architecture and make use of the Java Service Loader mechanism. Make sure your Fat Jar implementation is configured to aggregate services. With the Gradle Shadow Jar you do this with
shadowJar {
mergeServiceFiles()
}
Note the main launch class has been changed from MicroServerStartup to MicroserverApp
Microserver is a zero configuration, standards based, battle hardened library to run Java Rest Microservices via a standard Java main class. It has been used in production in AOL since July 2014.
- micro-grizzly-with-jersey
- micro-tomcat-with-jersey
- micro-core
- micro-boot : Microserver driving Spring Boot
- micro-spring-boot : Spring Boot driving Microserver
Example Apps : Microserver Core with Grizzly and Jersey
Example Apps : Microserver Boot
Microserver Grizzly with Jersey
<dependency>
<groupId>com.oath.microservices</groupId>
<artifactId>micro-grizzly-with-jersey</artifactId>
<version>x.yz</version>
</dependency>
Microserver Spring Boot
<dependency>
<groupId>com.oath.microservices</groupId>
<artifactId>micro-spring-boot</artifactId>
<version>x.yz</version>
</dependency>
Microserver core
compile group: 'com.oath.microservices', name:'micro-core', version:'x.yz'
Microserver Spring Boot
compile group: 'com.oath.microservices', name:'micro-spring-boot', version:'x.yz'
Microserver core is a lightweight server configuration engine built using Spring, Cyclops and Jackson.
No directory structure is imposed by the server and no XML is required. There is no framework config. Just a jar file and your application. You can, of course, configure your application without limit.
Example working application :-
public class AppRunnerTest {
public static void main(String[] args) throws InterruptedException {
new MicroserverApp(() -> "test-app").run();
}
}
This will deploy a REST server on port 8080 (configurable by test-app.port in application.properties), it will also automagically capture any Rest end points (Spring & Jersey annotations) that implement the tag interface RestResource (see below for an example).
@Rest
@Path("/status")
public class StatusResource {
@GET
@Produces("text/plain")
@Path("/ping")
public String ping() {
return "ok";
}
}
If you find you need configuration options for your application you have two options.
- Override some of the available options on the Module interface (ConfigurableModule provides a builder mechanism for this)
- Implement a custom plugin (the cleanest option, which also promotes reuse across services).
The core of Microserver is a Spring 4.x Dependency Injection container which is used to store all the main classes of your Microservice (s). The Spring Dependency Injection container can be configured by the @Microservice Annotation on your main class, or by the Config object (optionally passed as a parameter to startup).
Each Microservice is a Jersey REST Application, these can be deployed independently as pure Microservices or together as a micro-monolith. Multiple Microservices can run on the same server, by adding them to the classpath at runtime. They share a common Spring Dependency Injection container (as they are smaller services, we feel it makes sense to share resources such as ThreadPools, Datasources etc), but act as totally separate Rest applications.
When creating embedded Microservices (multiple services colocated on the same JVM and Spring container), the development project should be independent, but the colocated instances should be tested as they will be deployed in production. There will be more info to follow on the wiki, on how and why we have implemented and scaled this pattern (the goal is to achieve both the benefits of a full Microservice architecture, but minimise the costs as articulated by Robert (Uncle Bob) C. Martin and others - e.g. here: Microservices and Jars .
Jersey REST Applications are configured by the Module interface (at least one of which must be specified on startup).
The configuration of your Rest endpoints can be managed via the Module interface. The Module interface has a number of Java 8 default methods and a single abstract method (getContext). It behaves as a functional interface, and can be defined by a lambda expression. When used in this way the lambda represents the context the Microserver will create Rest end points on.
e.g.
new MicroserverApp(() -> "context").start();
() -> "context" is a Module!
Module provides the following default methods, that clients can override
default Map<String,String> getPropertyOverrides(){
return Maps.newHashMap();
}
default Set<Class> getSpringConfigurationClasses(){
return Sets.newHashSet(Classes.CORE_CLASSES.getClasses());
}
default List<Class> getRestResourceClasses() {
return Arrays.asList(RestResource.class);
}
default List<Class> getRestAnnotationClasses() {
return Arrays.asList(Rest.class);
}
default List<String> getDefaultJaxRsPackages(){
return Arrays.asList("com.wordnik.swagger.sample.resource",
"com.wordnik.swagger.sample.util" );
}
default List<Class> getDefaultResources(){
return Arrays.asList(JacksonFeature.class,
//SWAGGER CLASSES
ApiListingResourceJSON.class,JerseyApiDeclarationProvider.class,
JerseyResourceListingProvider.class);
}
default List<ServletContextListener> getListeners(ServerData data){
return ImmutableList.of(new ContextLoaderListener(data
.getRootContext()),
new JerseySpringIntegrationContextListener(data),
new SwaggerInitializer(data));
}
default Map<String,Filter> getFilters(ServerData data) {
return ImmutableMap.of("/*",new QueryIPRetriever());
}
default Map<String,Servlet> getServlets(ServerData data) {
return ImmutableMap.of();
}
default String getJaxWsRsApplication(){
return JerseyRestApplication.class.getCanonicalName();
}
default String getProviders(){
return "com.aol.micro.server.rest.providers";
}
RestResource class defines the tag interface used to identify Rest end points for this module.
Filters provides a map of Servlet filters and the paths to which they should be applied
Providers allows client code to change the Jersey Providers packages
JaxWsRsApplication allows client code to completely override the Microserver jax.ws.rs.Application
Microserver supports auto-discovery of application.properties. Microserver will assume a default file name of 'application.properties'. Microserver will check for a properties in the following order
-
System property 'application.property.file' and if present will load the property file from disk using that.
-
Otherwise, Microserver will look for a System Property 'application.env' and will load the application property file from the classpath using the resource name 'application-${application.env}.properties.
-
Alternatively, Microserver will load application.properties directly from the classpath.
-
If still not found Microserver will load application.properties from disk in the current directory
The default file name application.properties can be configured by exception (use PropertyFileConfig.setApplicationPropertyFileName(String filename).
Microserver application properties loading is configured by the class PropertyFileConfig. You can replace this with your own Spring configuration file to load property files by a different set of rules (by passing in your class to the constructor of Microserver).
Microserver supports the embedding of multiple microservices within a single Microserver, this is not the default mode of operation and involves a little more work to setup. All Microservices will share a single Spring context, so some care needs to be taken when authoring such Microservices to avoid conflicts. This does mean that they can share resources (such as database connections) where it makes sense to do so.
Embedded microservices should be collated at '''runtime only'''. There should be no compile time dependency between embedded microservices (otherwise you are not building microservices but a monolithic application).
Embedding microservices is an optimisation that allows better performance, enhanced robustness and reliability and easier management of microservices - while still maintaining the advantages of horizontal scalability offered by the microservices approach.
This example will start two different Rest endpoints - one on context "test-app" and another on context "alternative-app". "test-app" will automagically wire in any Jersey endpoints that implement TestAppRestResource. "alternative-app" will automagically wire in any Jersey endpoints that implement AltAppRestResource.
@Microserver
public class EmbeddedAppRunnerTest {
public static void main(String[] args) throws InterruptedException {
new MicroserverApp(EmbeddedAppRunnerTest.class,
new EmbeddedModule(TestAppRestResource.class,"test-app"),
new EmbeddedModule(AltAppRestResource.class,"alternative-app")).start();
}
}
We recommend the Gradle plugin Shadow Jar. For Gradle 2.0 simply define it in your plugins section ->
plugins {
id 'java' // or 'groovy' Must be explicitly applied
id 'com.github.johnrengelman.shadow' version '1.2.0'
}
Maven users can use Shade plugin or equivalent (Maven assembly plugin).
- YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.