Skip to content

Commit 692661b

Browse files
authored
solved img tag issue
1 parent b9914c6 commit 692661b

File tree

1 file changed

+7
-8
lines changed
  • blog/Building RESTful CRUD API in springboot

1 file changed

+7
-8
lines changed

blog/Building RESTful CRUD API in springboot/index.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Motive of this article
5252

5353
- Visit spring initializer and fill in all the details accordingly and at last click on the GENERATE button. Extract the zip file and import it into your IDE.
5454

55-
<img src="./images/image01.png">
55+
![img-03](./images/image01.png)
5656

5757
### 1.1. Add below dependencies in pom.xml file.
5858

@@ -117,7 +117,7 @@ spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
117117

118118
- Create below folder structure inside src folder. We’ll travel through each file one by one.
119119

120-
<img src="./images/image02.png">
120+
![img-03](./images/image02.png)
121121

122122
## Step 3: Create User Model
123123

@@ -548,25 +548,24 @@ public class UserServiceExceptionHandler {
548548

549549
Register user failed: User details invalid!
550550

551-
<img src="./images/image03.png">
551+
![img-03](./images/image03.png)
552552

553553
Register user successful
554554

555-
<img src="./images/image04.png">
555+
![img-04](./images/image04.png)
556556

557557

558558
Retrieve all users
559559

560-
<img src="./images/image05.png">
560+
![img-05](./images/image05.png)
561561

562562

563563
Update the details of John
564564

565-
<img src="./images/image06.png">
566-
565+
![img-06](./images/image06.png)
567566

568567
Delete user john
569568

570-
<img src="./images/image07.png">
569+
![img-07](./images/image07.png)
571570

572571
Hey guys, that’s it. We have successfully developed rest crud API for a user management system.

0 commit comments

Comments
 (0)