File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -14,35 +14,35 @@ Build Restful CRUD API for a simple Note-Taking application using Spring Boot, M
14
14
15
15
** 1. Clone the application**
16
16
17
- ``` bash
18
- git clone https://github.com/callicoder/spring-boot-mysql-rest-api-tutorial.git
19
- ```
17
+ ```bash
18
+ git clone https://github.com/callicoder/spring-boot-mysql-rest-api-tutorial.git
19
+ ```
20
20
21
21
** 2. Create Mysql database**
22
- ``` bash
23
- create database notes_app
24
- ```
22
+ ```bash
23
+ create database notes_app
24
+ ```
25
25
26
26
** 3. Change mysql username and password as per your installation**
27
27
28
- + open ` src/main/resources/application.properties `
28
+ + open `src/main/resources/application.properties`
29
29
30
- + change ` spring.datasource.username ` and ` spring.datasource.password ` as per your mysql installation
30
+ + change `spring.datasource.username` and `spring.datasource.password` as per your mysql installation
31
31
32
32
** 2. Build and run the app using maven**
33
33
34
- ``` bash
35
- mvn package
36
- java -jar target/easy-notes-1.0.0.jar
37
- ```
34
+ ```bash
35
+ mvn package
36
+ java -jar target/easy-notes-1.0.0.jar
37
+ ```
38
38
39
- Alternatively, you can run the app without packaging it using -
39
+ Alternatively, you can run the app without packaging it using -
40
40
41
- ``` bash
42
- mvn spring-boot:run
43
- ```
41
+ ```bash
42
+ mvn spring-boot:run
43
+ ```
44
44
45
- The app will start running at < http://localhost:8080 > .
45
+ The app will start running at <http://localhost:8080>.
46
46
47
47
## Explore Rest APIs
48
48
You can’t perform that action at this time.
0 commit comments