Simple spring boot application with open telemetry
- Create user
echo -n '{"name": "ilter","email":"example@com"}' | http localhost:8080/users
- Create movie
echo -n '{"title": "test movie","director":"test director","genre":"dram"}' | http localhost:8081/movies
- Add movie to user's list
http PUT localhost:8080/users/{userId}/movie/{movieId}
userId from step 1 and movieId from step 2
- Get user details
http localhost:8080/users/{userId}