From the course: Creating Spring Boot Microservices
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Use cases for an API gateway microservice - Spring Boot Tutorial
From the course: Creating Spring Boot Microservices
Use cases for an API gateway microservice
- [Instructor] So this is just our first iteration with this customer of security. I think as it goes on, we'll maybe have some more strict authorization, but for now, all that we need to do is pass in a secured way, that token to the people that have to have authorization to add packages and add tours and delete them, modify them, as well as uploading images. Use case one is to protect our tour data. As a tour publisher, I should have the ability to create, update, or delete tours, tour packages, or ratings in the MySQL database. Use case two, protect images. As a tour publisher, I only should have the ability to upload images to the MongoDB database. Use case three, permit fetching tour data. As a front end developer, I should be able to freely reference tours, tour packages and ratings stored in the MySQL database for presentation on the Explore California website. Use case four, permit fetching images. As a front end developer, I should be able to freely download images saved to…