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
-[Gradle 5](https://gradle.org/releases/) or [Maven 3](https://maven.apache.org/docs/history.html)
19
+
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
20
+
-[The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
21
+
22
+
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
23
+
24
+
```
25
+
cli_binary_format=raw-in-base64-out
26
+
```
27
+
28
+
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
$ cd aws-lambda-developer-guide/sample-apps/blank-java
35
+
36
+
To create a new bucket for deployment artifacts, run `1-create-bucket.sh`.
37
+
38
+
blank-java$ ./1-create-bucket.sh
39
+
make_bucket: lambda-artifacts-a5e491dbb5b22e0d
40
+
41
+
To build a Lambda layer that contains the function's runtime dependencies, run `2-build-layer.sh`. Packaging dependencies in a layer reduces the size of the deployment package that you upload when you modify your code.
42
+
43
+
blank-java$ ./2-build-layer.sh
44
+
45
+
# Deploy
46
+
47
+
To deploy the application, run `3-deploy.sh`.
48
+
49
+
blank-java$ ./3-deploy.sh
50
+
BUILD SUCCESSFUL in 1s
51
+
Successfully packaged artifacts and wrote output template to file out.yml.
52
+
Waiting for changeset to be created..
53
+
Successfully created/updated stack - blank-java
54
+
55
+
This script uses AWS CloudFormation to deploy the Lambda functions and an IAM role. If the AWS CloudFormation stack that contains the resources already exists, the script updates it with any changes to the template or function code.
56
+
57
+
You can also build the application with Maven. To use maven, add `mvn` to the command.
[INFO] --------------------------------[ jar ]---------------------------------
64
+
...
65
+
66
+
# Test
67
+
To invoke the function, run `4-invoke.sh`.
68
+
69
+
blank-java$ ./4-invoke.sh
70
+
{
71
+
"StatusCode": 200,
72
+
"ExecutedVersion": "$LATEST"
73
+
}
74
+
75
+
Let the script invoke the function a few times and then press `CRTL+C` to exit.
76
+
77
+
The application uses AWS X-Ray to trace requests. Open the [X-Ray console](https://console.aws.amazon.com/xray/home#/service-map) to view the service map.
Choose a node in the main function graph. Then choose **View traces** to see a list of traces. Choose any trace to view a timeline that breaks down the work done by the function.
0 commit comments