Skip to content

paulocordeiro/swapi-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swapi-java

A SWAPI client written with Java

This is a java impletation from SWAPI client with Spring Boot.

use to start aplication:

# gradle bootRun 

use run aplication tests:

# gradle test 

use to get all films:

curl --request GET \
     --url http://localhost:8080/films/

use to get list names of films:

curl --request GET \
     --url http://localhost:8080/films/names

use to get a film by episode id:

curl --request GET \
     --url http://localhost:8080/films/1

use to get a film with all details:

curl --request GET \
     --url http://localhost:8080/films/details/5

use update a film description and increment film version:

curl --request PUT \
  --url http://localhost:8080/films/updatedescription/5 \
  --header 'Content-Type: application/json' \
  --data 'New description'

About

A SWAPI client written with Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages