Running Java in AWS Lambda
For the longest time backend Java developers only ran code on web servers. Web servers are the glue between the outside world and your application. They pass incoming network requests to your code to do some work and return a response — like handling REST API calls made by most modern web apps. Web servers are predictable, reliable, but deeply flawed. As traffic increases, you need to manually scale up the number of web servers....