Skip to content

Commit 178c565

Browse files
committed
[1.0.0-SNAPSHOT]
Quarkus examples up to date README.md updated
1 parent 298a910 commit 178c565

File tree

22 files changed

+83
-59
lines changed

22 files changed

+83
-59
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
# Java on AWS Lambda
1+
# Java AWSLambda Examples
2+
3+
Repository with AWSLambda examples for different frameworks Java Frameworks such:
4+
- [Micronaut](https://docs.micronaut.io/latest/guide/)
5+
- [Spring](https://docs.spring.io/spring-framework/reference/index.html)
6+
- [Quarkus](https://quarkus.io/guides/)
7+
- [SimpleLambda](https://github.com/GoodforGod/simple-awslambda)

quarkus-dynamodb/README.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
# Quarkus Lambda
1+
# Quarkus AWSLambda DynamoDB
22

3-
Example for Quarkus.
3+
Example for Quarkus AWS Lambda.
44

5-
## Features
6-
- Micronaut Plugin for BOM and version management.
7-
- Spotless for Code Style check and apply.
8-
- .gitignore and .gitattributes for proper ignore and symbols check.
9-
- .editorconfig for simple configs code style and encoding UTF-8.
10-
- Proper Gradle and Gradle Wrapper configuration.
115

126
## Build
137

148
```shell
15-
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17
9+
./gradlew quarkus-dynamodb:quarkusBuild -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17
1610
```
1711

1812
## SAM
@@ -21,5 +15,16 @@ Example for Quarkus.
2115
sam local start-api -t sam.yaml -p 3000
2216
```
2317

18+
## Event Example
19+
20+
Example of event to send to lambda:
21+
```json
22+
{
23+
"name": "Steeven King"
24+
}
25+
```
26+
2427
## More
25-
- https://quarkus.io/guides/amazon-lambda
28+
- https://quarkus.io/guides/gradle-tooling
29+
- https://quarkus.io/guides/amazon-lambda
30+
- https://quarkus.io/guides/writing-native-applications-tips

quarkus-dynamodb/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id "java"
33
id "jacoco"
4+
id "application"
45

56
id "io.quarkus" version "3.3.0"
67
}
@@ -60,7 +61,7 @@ quarkusBuild {
6061
}
6162
nativeArgs {
6263
containerBuild = true
63-
buildImage = "quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17"
64+
buildImage = "quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17"
6465
}
6566
}
6667

quarkus-dynamodb/src/main/java/io/goodforgod/quarkus/LambdaHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import com.amazonaws.services.lambda.runtime.Context;
44
import com.amazonaws.services.lambda.runtime.RequestHandler;
55
import io.quarkus.runtime.annotations.RegisterForReflection;
6+
import jakarta.enterprise.context.ApplicationScoped;
7+
import jakarta.inject.Named;
68
import java.util.Map;
79
import java.util.UUID;
8-
import javax.enterprise.context.ApplicationScoped;
9-
import javax.inject.Named;
1010
import org.apache.commons.logging.LogFactory;
1111
import org.apache.commons.logging.impl.LogFactoryImpl;
1212
import org.apache.commons.logging.impl.SimpleLog;

quarkus-helloworld/README.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
# Quarkus Lambda
1+
# Quarkus AWSLambda HelloWorld
22

3-
Example for Quarkus.
3+
Example for Quarkus AWS Lambda.
44

5-
## Features
6-
- Micronaut Plugin for BOM and version management.
7-
- Spotless for Code Style check and apply.
8-
- .gitignore and .gitattributes for proper ignore and symbols check.
9-
- .editorconfig for simple configs code style and encoding UTF-8.
10-
- Proper Gradle and Gradle Wrapper configuration.
115

126
## Build
137

148
```shell
15-
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17
9+
./gradlew quarkus-helloworld:quarkusBuild -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17
1610
```
1711

1812
## SAM
@@ -21,6 +15,15 @@ Example for Quarkus.
2115
sam local start-api -t sam.yaml -p 3000
2216
```
2317

18+
## Event Example
19+
20+
Example of event to send to lambda:
21+
```json
22+
{
23+
"name": "Steeven King"
24+
}
25+
```
26+
2427
## More
2528
- https://quarkus.io/guides/gradle-tooling
2629
- https://quarkus.io/guides/amazon-lambda

quarkus-helloworld/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id "java"
33
id "jacoco"
4+
id "application"
45

56
id "io.quarkus" version "3.3.0"
67
}
@@ -50,7 +51,7 @@ test {
5051
quarkusBuild {
5152
nativeArgs {
5253
containerBuild = true
53-
buildImage = "quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17"
54+
buildImage = "quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17"
5455
}
5556
}
5657

quarkus-helloworld/src/main/java/io/goodforgod/quarkus/LambdaHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import com.amazonaws.services.lambda.runtime.Context;
44
import com.amazonaws.services.lambda.runtime.RequestHandler;
5+
import jakarta.enterprise.context.ApplicationScoped;
6+
import jakarta.inject.Named;
57
import java.util.UUID;
6-
import javax.enterprise.context.ApplicationScoped;
7-
import javax.inject.Named;
88
import org.slf4j.Logger;
99
import org.slf4j.LoggerFactory;
1010

quarkus-http/README.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
# Quarkus Lambda
1+
# Quarkus AWSLambda HTTP
22

3-
Example for Quarkus.
3+
Example for Quarkus AWS Lambda.
44

5-
## Features
6-
- Micronaut Plugin for BOM and version management.
7-
- Spotless for Code Style check and apply.
8-
- .gitignore and .gitattributes for proper ignore and symbols check.
9-
- .editorconfig for simple configs code style and encoding UTF-8.
10-
- Proper Gradle and Gradle Wrapper configuration.
115

126
## Build
137

148
```shell
15-
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17
9+
./gradlew quarkus-http:quarkusBuild -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17
1610
```
1711

1812
## SAM
@@ -21,6 +15,16 @@ Example for Quarkus.
2115
sam local start-api -t sam.yaml -p 3000
2216
```
2317

18+
## Event Example
19+
20+
Example of event to send to lambda:
21+
```json
22+
{
23+
"name": "Steeven King"
24+
}
25+
```
26+
2427
## More
28+
- https://quarkus.io/guides/gradle-tooling
2529
- https://quarkus.io/guides/amazon-lambda
26-
- https://quarkus.io/guides/rest-client
30+
- https://quarkus.io/guides/writing-native-applications-tips

quarkus-http/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id "java"
33
id "jacoco"
4+
id "application"
45

56
id "io.quarkus" version "3.3.0"
67
}
@@ -11,9 +12,6 @@ repositories {
1112
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
1213
}
1314

14-
group = groupId
15-
version = rootProject.artifactVersion
16-
1715
sourceCompatibility = JavaVersion.VERSION_17
1816
targetCompatibility = JavaVersion.VERSION_17
1917

@@ -56,7 +54,7 @@ test {
5654
quarkusBuild {
5755
nativeArgs {
5856
containerBuild = true
59-
buildImage = "quay.io/quarkus/ubi-quarkus-native-image:22.0.0-java17"
57+
buildImage = "quay.io/quarkus/ubi-quarkus-graalvmce-builder-image:22.3-java17"
6058
}
6159
}
6260

quarkus-http/src/main/java/io/goodforgod/quarkus/LambdaHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import com.amazonaws.services.lambda.runtime.RequestHandler;
55
import io.goodforgod.quarkus.http.EtherscanBlock;
66
import io.goodforgod.quarkus.http.EtherscanService;
7-
import javax.enterprise.context.ApplicationScoped;
8-
import javax.inject.Named;
7+
import jakarta.enterprise.context.ApplicationScoped;
8+
import jakarta.inject.Named;
99
import org.slf4j.Logger;
1010
import org.slf4j.LoggerFactory;
1111

quarkus-http/src/main/java/io/goodforgod/quarkus/http/EtherscanClient.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package io.goodforgod.quarkus.http;
22

3-
import javax.ws.rs.GET;
4-
import javax.ws.rs.Path;
5-
import javax.ws.rs.Produces;
6-
import javax.ws.rs.QueryParam;
7-
import javax.ws.rs.core.MediaType;
3+
import jakarta.ws.rs.GET;
4+
import jakarta.ws.rs.Path;
5+
import jakarta.ws.rs.Produces;
6+
import jakarta.ws.rs.QueryParam;
7+
import jakarta.ws.rs.core.MediaType;
88
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
99

1010
/**

quarkus-http/src/main/java/io/goodforgod/quarkus/http/EtherscanService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package io.goodforgod.quarkus.http;
22

33
import io.vertx.ext.web.handler.HttpException;
4-
import javax.inject.Inject;
5-
import javax.inject.Singleton;
4+
import jakarta.inject.Inject;
5+
import jakarta.inject.Singleton;
66
import org.eclipse.microprofile.rest.client.inject.RestClient;
77

88
/**

simplelambda-auroradb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda AuroraDB
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-dynamodb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda DynamoDB
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-helloworld/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda HelloWorld
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-http/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda HTTP
22

33
Java 17+ AWS Lambda example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-micronaut-dynamodb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda Micronaut DynamoDB
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-micronaut-helloworld/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda Micronaut HelloWorld
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

simplelambda-micronaut-http/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Simple Lambda
1+
## Simple AWSLambda Micronaut HTTP
22

33
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
44

spring-dynamodb/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ Example of event to send to lambda:
4242
- https://spring.io/guides/gs/spring-boot-docker/
4343
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
4444
- https://paketo.io/docs/howto/java/
45-
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
45+
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
46+
- https://docs.spring.io/spring-cloud-function/docs/current/reference/html/aws-intro.html
47+
- https://docs.spring.io/spring-boot/docs/current/reference/html/native-image.html

spring-helloworld/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ Example of event to send to lambda:
4242
- https://spring.io/guides/gs/spring-boot-docker/
4343
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
4444
- https://paketo.io/docs/howto/java/
45-
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
45+
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
46+
- https://docs.spring.io/spring-cloud-function/docs/current/reference/html/aws-intro.html
47+
- https://docs.spring.io/spring-boot/docs/current/reference/html/native-image.html

spring-http/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ Example of event to send to lambda:
4242
- https://spring.io/guides/gs/spring-boot-docker/
4343
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
4444
- https://paketo.io/docs/howto/java/
45-
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
45+
- https://github.com/spring-projects-experimental/spring-native/tree/main/samples/cloud-function-aws
46+
- https://docs.spring.io/spring-cloud-function/docs/current/reference/html/aws-intro.html
47+
- https://docs.spring.io/spring-boot/docs/current/reference/html/native-image.html

0 commit comments

Comments
 (0)