Commit f71f60c2 by Thaswin Muralikaran

Merge branch 'thaswin' into 'master'

Updated Readme file

See merge request !3
parents f1019d47 3e9016e9
......@@ -19,7 +19,7 @@ By the end of this session, students will be able to create a robust Spring Boot
- Brief explanation on Spring Boot architectures.
- Introduction to Swagger UI for API testing.
## 2. Project Setup (15 minutes)
## 2. Project Setup (30 minutes)
### SQL Setup
......@@ -45,6 +45,11 @@ By the end of this session, students will be able to create a robust Spring Boot
- Add: %JAVA_HOME%\bin
- Click OK to save.
### IDE Setup
- Install the Intellij IDEA by following this link [click here](https://www.jetbrains.com/idea/download/?section=windows).
- Download the Community Edition and install it.
### Spring Boot Setup
- Create new project in [Spring initializr](https://start.spring.io/).
......@@ -103,7 +108,7 @@ my-product-management-svc
- In the application.properties file under the resources folder add the database configuration.
```
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/productmngm?useSSL=false&serverTimezone=UTC
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/productmngm?createDatabaseIfNotExist=true&useSSL=false&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=01234
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment