You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the MySQL Sakilla DB (a sample database they provide). My resulting JSON looks like:
{
"filmId": 1,
"title": "Academy Dinosaur",
"description": "An epic drama of a feminist and a mad scientist who must battle a teacher in the canadian rockies",
"releaseYear": 2006,
"rating": "PG",
"actors": [
{
"firstName": "Penelope",
"lastName": "Guiness"
}
]
}
I'm connecting to multiple DBs, so I use R2dbcEntityOperations. I need to do some mapping on the rating field, so I added a custom converter. Now the resulting JSON is:
{
"filmId": 1,
"title": "Academy Dinosaur",
"description": "An epic drama of a feminist and a mad scientist who must battle a teacher in the canadian rockies",
"releaseYear": 2006,
"rating": "PG",
"actors": []
}
I'm using the MySQL Sakilla DB (a sample database they provide). My resulting JSON looks like:
I'm connecting to multiple DBs, so I use R2dbcEntityOperations. I need to do some mapping on the rating field, so I added a custom converter. Now the resulting JSON is:
My code looks like this:
The text was updated successfully, but these errors were encountered: