https://github.com/techprimers/spring-cloud-function-aws-example
Spring Cloud Function using AWS Adapter in AWS Lambda
https://github.com/techprimers/spring-cloud-function-aws-example
aws lambda lambda-functions spring-cloud-function
Last synced: 9 months ago
JSON representation
Spring Cloud Function using AWS Adapter in AWS Lambda
- Host: GitHub
- URL: https://github.com/techprimers/spring-cloud-function-aws-example
- Owner: TechPrimers
- Created: 2019-07-21T14:27:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T17:41:38.000Z (over 6 years ago)
- Last Synced: 2025-03-28T22:51:18.343Z (9 months ago)
- Topics: aws, lambda, lambda-functions, spring-cloud-function
- Language: Java
- Size: 51.8 KB
- Stars: 14
- Watchers: 2
- Forks: 30
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Cloud Function using AWS Adapter example
## Exposed Function as API Endpoint using AWS API Gateway
`Hello.java` is exposed as function to the AWS Request Handler using `SpringBootRequestHandler`.
`APIGatewayProxyRequestEvent` is the input object and `APIGatewayProxyResponseEvent` is the response object.
### Command used:
```
curl -X POST -H 'Content-Type: text/plain' -d 'TechPrimers' -i
```