Commit 3e9016e9 by Thaswin Muralikaran

Updated Readme file

parent 584fd305
...@@ -19,7 +19,7 @@ By the end of this session, students will be able to create a robust Spring Boot ...@@ -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. - Brief explanation on Spring Boot architectures.
- Introduction to Swagger UI for API testing. - Introduction to Swagger UI for API testing.
## 2. Project Setup (15 minutes) ## 2. Project Setup (30 minutes)
### SQL Setup ### SQL Setup
...@@ -45,6 +45,11 @@ By the end of this session, students will be able to create a robust Spring Boot ...@@ -45,6 +45,11 @@ By the end of this session, students will be able to create a robust Spring Boot
- Add: %JAVA_HOME%\bin - Add: %JAVA_HOME%\bin
- Click OK to save. - 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 ### Spring Boot Setup
- Create new project in [Spring initializr](https://start.spring.io/). - Create new project in [Spring initializr](https://start.spring.io/).
...@@ -103,7 +108,7 @@ my-product-management-svc ...@@ -103,7 +108,7 @@ my-product-management-svc
- In the application.properties file under the resources folder add the database configuration. - 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.username=root
spring.datasource.password=01234 spring.datasource.password=01234
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver 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