How can I save the following object (JSON) in a database using Springboot?

{ "id": 1, "exercises": [  {   "name": "Übung 1",   "sets": [1, 2, 3],   "reps": [4, 5, 6]  },  {   "name": "Übung 2",   "sets": [1, 2, 3],   "reps": [4, 5, 6]  } ] }

Unfortunately, I haven't been able to get this to work yet. Can anyone tell me how to best save this format in a database using SpringBoot? I use PostgreSQL.

(2 votes)
Loading...

Similar Posts

Subscribe
Notify of
1 Answer
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
regex9
1 year ago

To connect to the database, you need the PostgreSQL JDBC Driver. You could use the data in a table column of the type jsonb store.

This article: Handling JSON data in PostgreSQL using Springboot JPA application is quite helpful for more details.