Add AWS Native Lamnbda sample

This commit is contained in:
Oleg Zhurakousky
2023-01-30 16:20:19 +01:00
parent d59bbdb83d
commit e4eaef3f92
14 changed files with 847 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
cd ${LAMBDA_TASK_ROOT:-.}
java -Dspring.main.web-application-type=none -Dlogging.level.org.springframework=DEBUG \
-noverify -XX:TieredStopAtLevel=1 -Xss256K -XX:MaxMetaspaceSize=128M \
-cp .:`echo lib/*.jar | tr ' ' :` com.example.demo.NativeUppercaseApplication

View File

@@ -0,0 +1,5 @@
#!/bin/sh
cd ${LAMBDA_TASK_ROOT:-.}
./native-uppercase -Dlogging.level.org.springframework=DEBUG