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

When using the /manifest endpoint of a microservice, one of the json fields should be: "host":"X.X.X.X"

'org.glassfish.hk2.external:bean-validator:2.4.0-b31' has it's own internal version of JBoss Logging that conflicts with org.jboss.logging:jboss-logging:3.30 used in Hibernate 5. This results in exceptions when Hibernate attempts to access newer logging methods such...

bug

When I run the code below. ``` @Rest @Path("/test") public class SimpleApp { public static void main(String[] args){ new MicroserverApp(()->"").run(); } @GET public String myEndPoint(){ return "hello world!"; } }...

bug

Hi, I'd like to share report on API changes and backward compatibility for the Microserver Core library: https://abi-laboratory.pro/java/tracker/timeline/micro-core/ BC — binary compatibility SC — source compatibility The report is generated...

The following is in the build.gradle file of micro-server and it should be removed: compile(group: 'org.projectlombok', name: 'lombok', version:'1.16.2') { This dependency was originally in the Maven provided scope, but...

bug

ErrorCode.format() produces a FormattedErrorCode object which is not printable, where users would expect it to be. To print it, they need to do a ErrorCode.format(...).getCode().toString() which is counter-intuitive.

This would be great functionality for connecting with applications using OAuth which is becoming widespread

enhancement

Currently, S3ObjectWriter only supports writing Java objects and Strings. It should also be able to create PutObjectRequests for byte arrays.

enhancement