szediwy

Results 8 comments of szediwy

It looks like there are some issue of kobalt together with Oracle JDK 10: `***** ERROR Couldn't compile file: java.lang.ArrayIndexOutOfBoundsException: 450 at org.jetbrains.org.objectweb.asm.ClassReader.readUnsignedShort(ClassReader.java:2464) at org.jetbrains.org.objectweb.asm.ClassReader.readUTF8(ClassReader.java:2525) at org.jetbrains.org.objectweb.asm.ClassReader.readModule(ClassReader.java:761) at org.jetbrains.org.objectweb.asm.ClassReader.accept(ClassReader.java:646) at...

I have the same issue if I try it with Java 8. Using Java 6 I had no problems. I guess the problem is Java 8 has disabled some cipher...

Finally it works. It was a problem with the p12 keystore format. There were 2 certificates included in the p12 keystore. When use in Java, Java 6 selects the production...

For me it worked to define an `ExecutionStrategyProvider` instead of defining the `Map`. ``` @Bean public ExecutionStrategyProvider executionStrategyProvider( AsyncTransactionalExecutionStrategy queryExecutionStrategy) { return new DefaultExecutionStrategyProvider(queryExecutionStrategy, null, null); } ```