LAST UPDATE: 06/2021
Follow me: https://www.linkedin.com/in/vitor-cordeiro-921a5697/
This project main objective is provide a simple example of SNS and LAMBDA integration using Java Quarkus thecnology.
TO DO
- Quakus Framework (https://quarkus.io/);
- GraalVM;
- Swagger;
- Java 11 (Amazon Distribution);
- AWS: SNS, Lambda;
You can run your application in dev mode that enables live coding using:
./gradlew quarkusDevThe application can be packaged using:
./gradlew buildIt produces the quarkus-google-books-integration-api-1.0.0-SNAPSHOT-runner.jar file in the /build directory.
Be aware that it’s not an über-jar as the dependencies are copied into the build/lib directory.
If you want to build an über-jar, execute the following command:
./gradlew build -Dquarkus.package.type=uber-jarThe application is now runnable using java -jar build/quarkus-google-books-integration-api-1.0.0-SNAPSHOT-runner.jar.
To deploy the application throw cloudformation, use the script:
./infra/deploy-samcli.sh devOr, if you don't have GraalVM installed, you can run the native executable build in a container using:
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=trueYou can then execute your native executable with: ./build/quarkus-google-books-integration-api-1.0.0-SNAPSHOT-runner
If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.
- Missing some tests.
- Reference for studies: https://quarkus.io/guides/