I have a java based windows service, which listens on a tcp port for messages and responds. I would like to migrate it to Azure. I have the option of using a VM and installing it here, however I would prefer a serverless approach. Note: I do not have the source code, just jar files installed using batch comma…
Tag: serverless
Using GraalVM to run Java in AWS Lambda
Is there any ability to use GraalVM to run Java in AWS Lambda functions? I read a lot articles about cold starts of Java applications with GraalVM AOT (ahead-of-time) compilation feature and decreasing duration of that and I’d like to try to use it in my AWS Lambda projects. Answer With the introduction…