Chapter 10. Conclusion
The goal of this book was for you to learn what it means to build and run applications using serverless technology on AWS, with AWS Lambda at the core of those systems. We hope that you feel empowered to do this, safe in the knowledge that Java is truly a first-class language choice in the serverless world.
We encourage you to reflect on some of the points we’ve tried to emphasize in this book:
-
Above all, know that trying out ideas with serverless systems is quick, and cheap. If in doubt, experiment!
-
Remember that Lambda code is “just code.” Lambda is not a framework, or an “application server” in the traditional sense—your Lambda functions are just small pieces of Java that process a JSON event. This makes unit testing, and incremental development within your IDE, fast and nimble. Similarly, try not to bloat your functions with unnecessary libraries and frameworks that were designed for alternative runtime models.
-
Automate the scripting of building and deploying your functions to the AWS Cloud. You want to be able to rapidly iterate in the same environment that will be processing production events. Use the techniques we’ve shown throughout the book with Maven, SAM, and CloudFormation to enable this.
-
As we showed in Chapter 6, spend most of your testing time on quick unit and functional tests that run locally within one JVM along with functions under test, but also invest in the automation of end-to-end tests that exercise your functions running ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access