-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is Jongo compatible with Jackson 2.8.x #321
Comments
Hello, AFAIK Jongo is compatible with Jackson 2.8. What is the exact version you are using ? |
After the upgrade we are using jackson 2.8.10
2017-12-10 22:22 GMT+01:00 Benoit Guérout <[email protected]>:
… Hello,
AFAIK Jongo is compatible with Jackson 2.8.
You can find more informations here : #319
<#319>
What is the exact version you are using ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#321 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAoqC0u1rntw3S4CIomMaaQR4gzIDt5Bks5s_EuGgaJpZM4Q8poL>
.
|
Can you test with the work in progress version of Jongo (1.4) ? <dependencies>
<dependency>
<groupId>org.jongo</groupId>
<artifactId>jongo</artifactId>
<version>jongo-1.4-early-20171013-1609</version>
</dependency>
</dependencies>
...
<repositories>
<repository>
<id>cloudbees-jongo-early-release</id>
<url>http://repository-jongo.forge.cloudbees.com/release</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories> |
ok I'll test it next week I think. Thanks |
Currently I resolved this behaviour modification by changing this line kind of statement :
by
Ths change is centralized in the repository so it's ok for me. |
Hello 1.3.1 and 1.4.0 have been released. 1.3.1: Jackson fixAcces(true) and Jackson update to 2.7.9 You can find more informations here: https://github.com/bguerout/jongo/releases |
Hi,
I just upgraded to Spring Boot 1.5.x and I'm using Jongo 1.3.
Spring Boot 1.5.x upgraded its Jackson dependency to 2.8.x. Officially Jongo is compatible with Jackson 2.7.x.
At first, I thought everything was ok but our tests detected a weird behaviour. I'm not sure it's related to Jongo (I'm pretty sure it's not) but I'm curious if you encountered such a thing.
We have a piece of code who works previously like that :
futureAccounts is collection. This collections has only objects of type FutureAccount which inherit from SimpleAccount
(FutureAccount extends SimpleAccount)
This code works fine before the upgrade.
Now, the deserialization complains :
It would work if we change the previous code like this :
Of course it's more problematic for every methods returning an iterable.
Did you encounter this behaviour before ?
The text was updated successfully, but these errors were encountered: