Skip to content

kh77/sb-guava-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot - Guava Example

  • Create User

      curl --location --request POST 'http://localhost:8080/users' \
      --header 'accept: */*' \
      --header 'Content-Type: application/json' \
      --data-raw '{
      "name": "hello world",
      "email": "hello@hotmail.com"
      }'
    
  • Find By User Id

      curl --location --request GET 'http://localhost:8080/users/1' \
      --header 'accept: */*' \
      --header 'Content-Type: application/json' \
      --data-raw ''
    
  • Find All Users

      curl --location --request GET 'http://localhost:8080/users' \
      --header 'accept: */*' \
      --header 'Content-Type: application/json' \
      --data-raw ''
    

Releases

No releases published

Packages

No packages published

Languages