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.
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.