2

I would like to port my Java Spring application to run in AWS Lambda. Is it possible? Are there any resources you could point me to? There are some tutorials available for Express, but not for Java Spring applications. Would greatly appreciate your help.

1 Answer 1

1

AWS Lambda is serverless and have limitation to upload binary and max execution time is 15 min.

You really not need Spring or any other framwork to run lambda as its working on own framwork

Plz share your usecase why need sparing with Lambda

Sign up to request clarification or add additional context in comments.

4 Comments

said rightly , but still you can deploy using micro services on lambda.
You can directly expose your lambda or dynamodb on API gateway and using transformation return response as microservice , for writing microservice on lambda not required Spring or any other framwork .docs.aws.amazon.com/lambda/latest/dg/…
Thank you to all who responded. I would like to port these apps to AWS lambda: github.com/WebGoat/WebGoat and github.com/bkimminich/juice-shop....These apps serve very specific purpose. There is a specific reason I would like port them to aws lambda. I know I can do research to figure out feasibility, but I am looking for shortcuts :-). Would appreciate pointers.
You need to understand Aws lambda ,it works on trigger so you can expose ur aws lambda, rest end point on api gateay and use this api in ur code .so on trigger rest you can invoke lambda .

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.