Skip to content

Commit

Permalink
Small Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Ranga Rao Karanam authored and Ranga Rao Karanam committed Jan 14, 2017
1 parent 5ac8e27 commit c6dbedd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Step20.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
##What You Will Learn during this Step:
- Introduction to Spring Data Rest
- Hit http://localhost:8080/users in POSTMAN
- http://localhost:8080/users/1
- http://localhost:8080/users/?size=4
- http://localhost:8080/users/?sort=name,desc
- @Param("role")
- http://localhost:8080/users/search/findByRole?role=Admin
- Good for quick prototype! Be cautious about using this in Big applications!

## Useful Snippets and References
First Snippet
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion Step23.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##What You Will Learn during this Step:
- Lets do some cleanup
- Move SomeBean to a different class and call it WelcomeController
- Lets Refactor the SurveyControllerIT.java

## Exercises
- Test and make sure everything is working fine
Expand Down

0 comments on commit c6dbedd

Please sign in to comment.