You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: workshop/content/replatform/springboot2-lambda/_index.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,19 @@ ls -lh lab-1-replatform/springboot2-lambda/target/springboot2-lambda.jar
15
15
16
16
It will report a package size of **39 MB**.
17
17
18
+
To be able to run your function locally to analyse it in more detail, export your `AWS_REGION` as following:
19
+
20
+
```bash
21
+
export AWS_REGION=$(aws --profile default configure get region)
22
+
```
23
+
24
+
To determine the number of classes which gets loaded to execute your function, run the following command in the bash window in your AWS Cloud9 IDE. Each application contains a helper Main class which invokes your AWS Lambda function locally:
To deploy the application, run the following command. It also exports the service endpoint url and the function ARN as environment variables for easy access:
0 commit comments