John McClean

Results 54 comments of John McClean

One work around for this issue is to exclude the offending bean-validator jar ``` configurations { all*.exclude group: 'org.glassfish.hk2.external', module: 'bean-validator' } ``` Microserver should either exclude the Jar or...

Full sample trace ``` java org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [lana-api/lana-beans-no-component-scan.xml]: Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: org.hibernate.internal.CoreMessageLogger.debugf(Ljava/lang/String;II)V at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1578)...

Currently forcing an upgrade to the latest bean-validator doesn't fix this, so it must be excluded when hibernate 5 is used. ``` configurations.all { resolutionStrategy { force 'org.glassfish.hk2.external:bean-validator:2.4.0-b33' } }...

Merged in https://github.com/aol/micro-server/pull/251

Not implemented for 0.89

PR is here : https://github.com/aol/micro-server/pull/399

delete bucket is in that list twice. Do you want to add 2 new operations, or is there a different third one?

Yeah sure, that sounds good, cyclops-streams adds reactive-streams type features on top of jOOλ (hotStreams, reactive-streams support, async execution etc) and then simple-react adds concurrency to that. There are a...