Dennis Kieselhorst

Results 93 comments of Dennis Kieselhorst

Thanks for the issue report. I was able to reproduce it. `activateSpringProfiles` triggers a new initialization. I'm not sure why the ServletContext is lost inside Spring and what we can...

Hi @lynch19, please see the discussion in #239. We have test code in https://github.com/awslabs/aws-serverless-java-container/tree/master/aws-serverless-java-container-springboot2/src/test/java/com/amazonaws/serverless/proxy/spring/webfluxapp. I'd appreciate if someone contributes a sample by adding it to https://github.com/awslabs/aws-serverless-java-container/tree/master/samples and creating a pull...

Hi, there is no need to modify the CodeUri manually. Just follow the steps as described in the readme: https://github.com/awslabs/aws-serverless-java-container/blob/master/samples/springboot2/pet-store/README.md I just tried it with master and dev branch and...

@alpasarupria you can also do it without SAM and CloudFormation. I'm not a Terraform expert but looking at https://github.com/hashicorp/terraform/issues/8344 Terraform allows to zip AWS Lambda functions on the fly. The...

Yeah, that is a known issue, see #369. https://github.com/FasterXML/jackson-modules-base/tree/master/blackbird looks like the way to go. Would you be willing to create a PR for that?

@siddharthjain210 have you read the previous comments? We are open for suggestions on how to fix it. For now the workaround above can be used.

@joain946 as mentioned above we are open for suggestions. The critical part is in https://github.com/awslabs/aws-serverless-java-container/blob/3b5f1f021dc102678e2fb4da24c798b13b2457dd/aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/LambdaContainerHandler.java#L88 so in case you want to create a pull request with a proposal on how...

Well in my view it's not required but the performance is worse without it. So for 2.0 we should probably replace Afterburner with Blackbird and make it configurable so it...

Just found https://github.com/quarkusio/qson, maybe also worth trying, works well with GraalVM and Quarkus.

`SpringProxyHandlerBuilder` and `SpringBootProxyHandlerBuilder` allow to provide an `ExceptionHandler` using the `exceptionHandler()` method. By default `AwsProxyExceptionHandler` will be used. We are open for suggestions and will also review PRs that optimize...