File tree 22 files changed +83
-59
lines changed
src/main/java/io/goodforgod/quarkus
src/main/java/io/goodforgod/quarkus
src/main/java/io/goodforgod/quarkus
simplelambda-micronaut-dynamodb
simplelambda-micronaut-helloworld
simplelambda-micronaut-http
22 files changed +83
-59
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 1
- # Quarkus Lambda
1
+ # Quarkus AWSLambda DynamoDB
2
2
3
- Example for Quarkus.
3
+ Example for Quarkus AWS Lambda .
4
4
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.
11
5
12
6
## Build
13
7
14
8
``` 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
16
10
```
17
11
18
12
## SAM
@@ -21,5 +15,16 @@ Example for Quarkus.
21
15
sam local start-api -t sam.yaml -p 3000
22
16
```
23
17
18
+ ## Event Example
19
+
20
+ Example of event to send to lambda:
21
+ ``` json
22
+ {
23
+ "name" : " Steeven King"
24
+ }
25
+ ```
26
+
24
27
## 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
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
3
id " jacoco"
4
+ id " application"
4
5
5
6
id " io.quarkus" version " 3.3.0"
6
7
}
@@ -60,7 +61,7 @@ quarkusBuild {
60
61
}
61
62
nativeArgs {
62
63
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"
64
65
}
65
66
}
66
67
Original file line number Diff line number Diff line change 3
3
import com .amazonaws .services .lambda .runtime .Context ;
4
4
import com .amazonaws .services .lambda .runtime .RequestHandler ;
5
5
import io .quarkus .runtime .annotations .RegisterForReflection ;
6
+ import jakarta .enterprise .context .ApplicationScoped ;
7
+ import jakarta .inject .Named ;
6
8
import java .util .Map ;
7
9
import java .util .UUID ;
8
- import javax .enterprise .context .ApplicationScoped ;
9
- import javax .inject .Named ;
10
10
import org .apache .commons .logging .LogFactory ;
11
11
import org .apache .commons .logging .impl .LogFactoryImpl ;
12
12
import org .apache .commons .logging .impl .SimpleLog ;
Original file line number Diff line number Diff line change 1
- # Quarkus Lambda
1
+ # Quarkus AWSLambda HelloWorld
2
2
3
- Example for Quarkus.
3
+ Example for Quarkus AWS Lambda .
4
4
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.
11
5
12
6
## Build
13
7
14
8
``` 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
16
10
```
17
11
18
12
## SAM
@@ -21,6 +15,15 @@ Example for Quarkus.
21
15
sam local start-api -t sam.yaml -p 3000
22
16
```
23
17
18
+ ## Event Example
19
+
20
+ Example of event to send to lambda:
21
+ ``` json
22
+ {
23
+ "name" : " Steeven King"
24
+ }
25
+ ```
26
+
24
27
## More
25
28
- https://quarkus.io/guides/gradle-tooling
26
29
- https://quarkus.io/guides/amazon-lambda
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
3
id " jacoco"
4
+ id " application"
4
5
5
6
id " io.quarkus" version " 3.3.0"
6
7
}
50
51
quarkusBuild {
51
52
nativeArgs {
52
53
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"
54
55
}
55
56
}
56
57
Original file line number Diff line number Diff line change 2
2
3
3
import com .amazonaws .services .lambda .runtime .Context ;
4
4
import com .amazonaws .services .lambda .runtime .RequestHandler ;
5
+ import jakarta .enterprise .context .ApplicationScoped ;
6
+ import jakarta .inject .Named ;
5
7
import java .util .UUID ;
6
- import javax .enterprise .context .ApplicationScoped ;
7
- import javax .inject .Named ;
8
8
import org .slf4j .Logger ;
9
9
import org .slf4j .LoggerFactory ;
10
10
Original file line number Diff line number Diff line change 1
- # Quarkus Lambda
1
+ # Quarkus AWSLambda HTTP
2
2
3
- Example for Quarkus.
3
+ Example for Quarkus AWS Lambda .
4
4
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.
11
5
12
6
## Build
13
7
14
8
``` 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
16
10
```
17
11
18
12
## SAM
@@ -21,6 +15,16 @@ Example for Quarkus.
21
15
sam local start-api -t sam.yaml -p 3000
22
16
```
23
17
18
+ ## Event Example
19
+
20
+ Example of event to send to lambda:
21
+ ``` json
22
+ {
23
+ "name" : " Steeven King"
24
+ }
25
+ ```
26
+
24
27
## More
28
+ - https://quarkus.io/guides/gradle-tooling
25
29
- https://quarkus.io/guides/amazon-lambda
26
- - https://quarkus.io/guides/rest-client
30
+ - https://quarkus.io/guides/writing-native-applications-tips
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
3
id " jacoco"
4
+ id " application"
4
5
5
6
id " io.quarkus" version " 3.3.0"
6
7
}
@@ -11,9 +12,6 @@ repositories {
11
12
maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
12
13
}
13
14
14
- group = groupId
15
- version = rootProject. artifactVersion
16
-
17
15
sourceCompatibility = JavaVersion . VERSION_17
18
16
targetCompatibility = JavaVersion . VERSION_17
19
17
56
54
quarkusBuild {
57
55
nativeArgs {
58
56
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"
60
58
}
61
59
}
62
60
Original file line number Diff line number Diff line change 4
4
import com .amazonaws .services .lambda .runtime .RequestHandler ;
5
5
import io .goodforgod .quarkus .http .EtherscanBlock ;
6
6
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 ;
9
9
import org .slf4j .Logger ;
10
10
import org .slf4j .LoggerFactory ;
11
11
Original file line number Diff line number Diff line change 1
1
package io .goodforgod .quarkus .http ;
2
2
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 ;
8
8
import org .eclipse .microprofile .rest .client .inject .RegisterRestClient ;
9
9
10
10
/**
Original file line number Diff line number Diff line change 1
1
package io .goodforgod .quarkus .http ;
2
2
3
3
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 ;
6
6
import org .eclipse .microprofile .rest .client .inject .RestClient ;
7
7
8
8
/**
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda AuroraDB
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda DynamoDB
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda HelloWorld
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda HTTP
2
2
3
3
Java 17+ AWS Lambda example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda Micronaut DynamoDB
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda Micronaut HelloWorld
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change 1
- ## Simple Lambda
1
+ ## Simple AWSLambda Micronaut HTTP
2
2
3
3
Java 17+ AWS Lambda Example with Micronaut DI support with GraalVM native compatibility.
4
4
Original file line number Diff line number Diff line change @@ -42,4 +42,6 @@ Example of event to send to lambda:
42
42
- https://spring.io/guides/gs/spring-boot-docker/
43
43
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
44
44
- 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
Original file line number Diff line number Diff line change @@ -42,4 +42,6 @@ Example of event to send to lambda:
42
42
- https://spring.io/guides/gs/spring-boot-docker/
43
43
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
44
44
- 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
Original file line number Diff line number Diff line change @@ -42,4 +42,6 @@ Example of event to send to lambda:
42
42
- https://spring.io/guides/gs/spring-boot-docker/
43
43
- https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1
44
44
- 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
You can’t perform that action at this time.
0 commit comments