micro-server icon indicating copy to clipboard operation
micro-server copied to clipboard

Microserver is a Java 8 native, zero configuration, standards based, battle hardened library to run Java Rest Microservices via a standard Java main class. Supporting pure Microservice or Micro-monoli...

Results 48 micro-server issues
Sort by recently updated
recently updated
newest added

To replace Guava caching. Plugin should help with using caffeine with cyclops and simple-react memoization

enhancement

micro-grizzly and micro-tomcat don't use configured ModuleBean hostname. First of them use hardcoded "0.0.0.0" second don't have any related configuration.

per @marcocast suggestion JClouds might enable us to write a more vendor neutral cloud data management plugin

enhancement

Performance enhancement.

enhancement

Out of date - currently written for a much older version of Microserver

enhancement
help wanted

Video is using an ancient API

enhancement

Separate module for authentication and authorisation.

This might make application configuration simpler, and slightly more functional. Simplest example : ``` Microserver.of("my-app") .run(); ``` Example with configuration ``` Microserserver.of("my-app") .filters(Filter1.class,Filter2.class) .resourcesFromSpring(ResourceMarker.class,ResourceMarker2.class) .onPort(8080) .run(); ``` It would open...

question