Skip to content

Commit c6dbedd

Browse files
Ranga Rao KaranamRanga Rao Karanam
authored andcommitted
Small Updates
1 parent 5ac8e27 commit c6dbedd

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Step20.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
##What You Will Learn during this Step:
22
- Introduction to Spring Data Rest
33
- Hit http://localhost:8080/users in POSTMAN
4+
- http://localhost:8080/users/1
5+
- http://localhost:8080/users/?size=4
6+
- http://localhost:8080/users/?sort=name,desc
7+
- @Param("role")
8+
- http://localhost:8080/users/search/findByRole?role=Admin
49
- Good for quick prototype! Be cautious about using this in Big applications!
510

611
## Useful Snippets and References
712
First Snippet
813
```
914
<dependency>
1015
<groupId>org.springframework.boot</groupId>
11-
<artifactId>spring-boot-starter-data-jpa</artifactId>
16+
<artifactId>spring-boot-starter-data-rest</artifactId>
1217
</dependency>
1318
1419
```

Step23.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
##What You Will Learn during this Step:
22
- Lets do some cleanup
3-
- Move SomeBean to a different class and call it WelcomeController
3+
- Lets Refactor the SurveyControllerIT.java
44

55
## Exercises
66
- Test and make sure everything is working fine

0 commit comments

Comments
 (0)