第 1 部分:探索如何创建 Lambda 函数来处理来自 API 网关的请求并使用无服务器应用程序模型将数据保留在 DynamoDB 中。
第 2 部分:详细介绍在 AWS 中配置 CodeCommit 存储库并设置 CICD 管道的必要步骤,该管道在向存储库提交新更改后自动启动构建过程。
安装 AWS CLI :按照指南安装 AWS 命令行界面。
安装 AWS SAM(无服务器应用程序模型) :按照说明安装 SAM CLI。
选择IDE :使用IntelliJ或类似的IDE进行开发。我更喜欢IntelliJ
用于打包的 Maven :确保您已安装 Maven 以打包您的应用程序。
可选:Docker (如果您需要在本地测试 Lambda 函数):如果您计划在本地测试 Lambda 函数,请安装 Docker。
环境设置
AWS 设置:
转到 AWS 有效控制面板 ,适用您的菅理员使用者凭据账号登录。在本地计算机上配置 AWS CLI :
$ aws configure
使用 AWS 无服务器应用程序模型 (SAM) 初始化项目:
$ sam init
重命名项目:将项目重命名为您喜欢的名称。
在 IntelliJ 中打开项目:启动 IntelliJ,然后打开项目。
将依赖项添加到 pom.xml :
将必要的依赖项添加到pom.xml
文件中。您只需添加 DynamoDB,因为 SAM 将自动包含其他依赖项。
<dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-core</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-events</artifactId> <version>3.11.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-dynamodb</artifactId> <version>1.12.573</version> </dependency> </dependencies>
编写处理程序类
面对lambda函数公式,插入图片sam主动自动生成的除理环节类,并插入以下的二维码;这才是一种简洁明了的二维码,面对合理内容,您很有可能可以运行更摸块化的二维码。 public class UserRequestHandler implements RequestHandler<Map<String,String>, Map<String,String>> { private AmazonDynamoDB amazonDynamoDB; private String DYNAMODB_TABLE_NAME = "users"; private Regions REGION = Regions.US_EAST_1; @Override public Map<String,String> handleRequest(Map<String,String> input, Context context) { this.initDynamoDbClient(); LambdaLogger logger = context.getLogger(); logger.log("Input payload:" + input.toString()); String userId = UUID.randomUUID().toString(); String firstName= input.get("firstName"); String lastName= input.get("lastName"); Map<String, AttributeValue> attributesMap = new HashMap<>(); attributesMap.put("id", new AttributeValue(userId)); attributesMap.put("firstName", new AttributeValue(firstName)); attributesMap.put("lastName", new AttributeValue(lastName)); logger.log(attributesMap.toString()); amazonDynamoDB.putItem(DYNAMODB_TABLE_NAME, attributesMap); Map<String, String> response = new HashMap<>(); response.put("id", userId); response.put("firstName", firstName); response.put("lastName", lastName); return response; } private void initDynamoDbClient() { this.amazonDynamoDB = AmazonDynamoDBClientBuilder.standard() .withRegion(REGION) .build(); } }
更新 SAM 模板文件
SAM 模板免费资料在引入和的部署 AWS 修改部分推动着重中之重效应。更新换代该项目的资料。该资料中须得私信的重中之重属性是 Lambda 涵数标题和 API 网关端点。这些是无服务于器广泛应用方式系统的目标。
AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: > pc-aws-user-api Sample SAM Template for pc-aws-user-api # More info about Globals: //github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst Globals: Function: Timeout: 20 MemorySize: 128 Tracing: Active Api: TracingEnabled: true Resources: UserRequestHandlerLambdaFunction: Type: AWS::Serverless::Function # More info about Function Resource: //github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction Properties: CodeUri: PcAwsUsersApi Handler: com.pc.aws.users.UserRequestHandler::handleRequest Runtime: java11 Architectures: - x86_64 MemorySize: 512 Environment: # More info about Env Vars: //github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#environment-object Variables: PARAM1: VALUE JAVA_TOOL_OPTIONS: -XX:+TieredCompilation -XX:TieredStopAtLevel=1 # More info about tiered compilation //aws.amazon.com/blogs/compute/optimizing-aws-lambda-function-performance-for-java/ Events: PcUsers: Type: Api # More info about API Event Source: //github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api Properties: Path: /users Method: post ApplicationResourceGroup: Type: AWS::ResourceGroups::Group Properties: Name: Fn::Sub: ApplicationInsights-SAM-${AWS::StackName} ResourceQuery: Type: CLOUDFORMATION_STACK_1_0 ApplicationInsightsMonitoring: Type: AWS::ApplicationInsights::Application Properties: ResourceGroupName: Ref: ApplicationResourceGroup AutoConfigurationEnabled: 'true' Outputs: # ServerlessRestApi is an implicit API created out of Events key under Serverless::Function # Find out more about other implicit resources you can reference within SAM # //github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api PcAwsUsersApi: Description: API Gateway endpoint URL for Prod stage Value: !Sub "//${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/users/" UserRequestHandlerLambdaFunction: Description: Lambda Function ARN Value: !GetAtt UserRequestHandlerLambdaFunction.Arn UserRequestHandlerLambdaFunctionIamRole: Description: Implicit IAM Role created Value: !GetAtt UserRequestHandlerLambdaFunctionRole.Arn
使用 SAM 构建和部署代码
在 IntelliJ 中,使用 末端,然而来执行下类指令: $ sam build
$ sam deploy –guided
测试API
在试验 API 前,请获取 DynamoDB 对 SAM 创办的 Lambda 游戏角色的访问就会管理员权限。
导航到 API Gateway,然后按照以下步骤获取您的服务的 URL:
Content-Type: application/json
)。
创建 CodeCommit 存储库
登录账号 AWS,接着快速搜索 CodeCommit 精准服务。
在 AWS CodeCommit 中创建新存储库来存储项目的源代码。
将代码提交到存储库
在 IntelliJ 中,点击POS机并设置以內系统命令以上交在步驟 I 中打造的码$ git init → This initialize local git $ git add . → This will stage files $ git commit -m "commit to CodeCommit"
将更改推送到远程存储库
从 aws 把控台另存 CodeCommit 数据库库 URL。 $ git remote add origin <repo URL> $ git push --set-upstream origin master --> This will prompt for user/password
创建 AWS CodeBuild 项目
设立一位 CodeBuild 工程项目来选定如果创建选用应用。这还包括名词解释创建周围环境、创建系统命令和依赖感项。
要设置 CodeBuild,您需要在项目目录中创建一个名为buildspec.yml
的构建规范文件。该文件将包含 CodeBuild 的构建命令和说明。
您可以参考官方文档,了解有关创建buildspec.yml
文件的详细说明。
version: 0.2 phases: install: runtime-versions: java: corretto11 pre_build: commands: - echo Nothing to do in the pre_build phase... build: commands: - echo Build started on `date` - sam build - sam package --output-template-file pcoutputtemplate.yaml --s3-bucket com-appsdev-pc-001 post_build: commands: - echo Build completed on `date` artifacts: files: - pcoutputtemplate.yaml
创建代码管道
测试管道
$ git branch CR01 $ git checkout CR01 $ git add . $ git commit -m “CR01” $ git push --set-upstream origin CR01 You cand also create a pull request in aws code commit, just for simplicity I am merging from local $ git checkout master $ git merge --ff-only CR01 $ git push