create database user_db;create user 'mysql_access'@'%' identified by 'mysql123';
grant all on db_example.* to 'mysql_access'@'%';
cd mysql-basic-functionalities
mvnw spring-boot:run
curl localhost:8080/access/newUser -d name=[name] -d email=[email] -d phone=[phone] -d DOB=[DOB] -d gender=[M/F]curl localhost:8080/access/getAllcurl localhost:8080/access/update/{id} -d {enter the parameters you want to update}curl localhost:8080/access/randomQuote