[jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-04 Thread oxyg3n8
The latest Jackson version is 2.9.7, I was also told that 2.9.8 will have some JDK 9+ compatibility work done on it. I would say; try 2.9.7 and see if you don't get that error, here is the link to the JDK 9+ comment: https://github.com/FasterXML/jackson-dataformats-binary/issues/153#issuecomment

[jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-05 Thread Dvir L
Thanks for your reply ! Getting the same error using Jackson 2.9.7 I do see ObjectMapper class inside jackson-databind - inflated: com/fasterxml/jackson/databind/ObjectMapper$1.class inflated: com/fasterxml/jackson/databind/ObjectMapper$2.class inflated: com/fasterxml/jackson/databind/ObjectMap

[jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-05 Thread oxyg3n8
More reason to think that it has to do with modules declaration for JDK 9+ and that it should be fixed at 2.9.8 Guido. On Wednesday, December 5, 2018 at 9:24:42 AM UTC, Dvir L wrote: > > Thanks for your reply ! > > Getting the same error using Jackson 2.9.7 > I do see ObjectMapper class inside j

Re: [jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-05 Thread Tatu Saloranta
On Wed, Dec 5, 2018 at 1:44 AM wrote: > > More reason to think that it has to do with modules declaration for JDK 9+ > and that it should be fixed at 2.9.8 > > Guido. Unlikely, if this still occurs with 2.9.7, which has Automatic Module name and should load fine as a module (albeit not exposing

Re: [jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-06 Thread Dvir L
So maybe this might not be Jackson related. Maybe its related to my class path or the class loader. Will verify if it finds other classes within other jar files that I'm using. -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe fro

Re: [jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-09 Thread Dvir L
Found an issue with the class loader on Java 11. Solved and everything works fine with Jackson 2.8.5. Thank you guys ! -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe from this group and stop receiving emails from it, send an ema

Re: [jackson-user] Re: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper in Java 11

2018-12-09 Thread Tatu Saloranta
On Sun, Dec 9, 2018 at 1:04 AM Dvir L wrote: > Found an issue with the class loader on Java 11. Solved and everything > works fine with Jackson 2.8.5. > Thank you guys ! > Great you got that resolved! -+ Tatu +- > -- > You received this message because you are subscribed to the Google Groups