-
Notifications
You must be signed in to change notification settings - Fork 682
Spring Data Commons does not support org.joda.DateTime #2790
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
Comments
Joda support was removed with Spring Data 3.0 (#2276) and deprecated in version 2.3 (#2086). We generally recommend the usage of JSR-310 temporal types. We cannot provide any further guidance with just a JSON dump and without any further context. |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue. |
upgraded the springboot 1.5.9 to 2.7.7, Now date time format got changed. Could you someone help on the disabling the new date format.
Dependency added to resolve an error "joda date/time type org.joda.time.datetime not supported by default"-
com.fasterxml.jackson.datatype
jackson-datatype-joda
2.14.0
New format displaying--->"createdDateTime": "2023-03-11T07:40:23.632Z"
Expected format-->
"createdDateTime": {
"millisOfDay": 64396372,
"secondOfDay": 64396,
"minuteOfDay": 1073,
"weekOfWeekyear": 10,
"hourOfDay": 17,
"minuteOfHour": 53,
"secondOfMinute": 16,
"millisOfSecond": 372,
"centuryOfEra": 20,
"yearOfEra": 2023,
"yearOfCentury": 23,
"weekyear": 2023,
"monthOfYear": 3,
"dayOfMonth": 10,
"dayOfWeek": 5,
"era": 1,
"dayOfYear": 69,
"year": 2023,
"zone": {
"uncachedZone": {
"cachable": true,
"fixed": false,
"id": "Asia/Kolkata"
},
"fixed": false,
"id": "Asia/Kolkata"
},
"millis": 1678450996372,
"chronology": {
"zone": {
"uncachedZone": {
"cachable": true,
"fixed": false,
"id": "Asia/Kolkata"
},
"fixed": false,
The text was updated successfully, but these errors were encountered: