1 Answer
- Newest
- Most votes
- Most comments
0
Hi,
For your use-case, Amazon API Gateway with AWS Lambda with a Spring Boot application could be an easy way to get started. API Gateway acts like a front door, handling web requests and sending them to Lambda functions, which run your application code without needing to manage servers. You could easily configure the appropriate security at API Gateway level and also scale with AWS Lambda.
Please refer this tutorial for API Gateway + Lambda understanding, and these samples on how to deploy a springboot application on AWS Lambda.
Hope this is helpful!
Thanks, Rama
