I have the JSON file and I want to persist it into Mysql database can anyone give me the steps to follow with the spring-data to do this, my JSON looks like this i created a modele with 3 class named like this Portal.java,Spaces.java,Indicators.java
{
"portalName":"office360",
"spaces": [
{
"spaceName": "Modèle d'Espace collaboratif",
"indicators": [
{
"indicatorName": "Created content",
"indicatorCounter": "0"
},
{
"indicatorName": "answers reader",
"indicatorCounter": "0"
}
]
},
{
"spaceName": "Espace de Travail par Defaut",
"indicators": [
{
"indicatorName": "Created content",
"indicatorCounter": "0"
},
{
"indicatorName": "answers reader",
"indicatorCounter": "0"
}
]
}
]}