Java 11 Gradle 7.0.2
gradle bootRun
gradle -Dflyway.configFiles=src/main/resources/application.properties flywayMigrate
entity-diagram.png
sample-survey-config.sql
curl --request GET
--url http://localhost:8080/api/survey/
--header 'Content-Type: application/json'
curl --request POST
--url http://localhost:8080/api/survey/replies
--header 'Content-Type: application/json'
--data '{
"repliedBy": "Rohit",
"questionReplies": [
{
"question": {
"id": 1
},
"choice": {
"id": 4
}
},
{
"question": {
"id": 2
},
"choice": {
"id": 9
}
}
]
}'