Lambda-Local 可以讓 Java 開發者:
- 使用同一套程式碼,可以方便的在自己的電腦開發 AWS Lambda function,不用每次都 Deploy 到 AWS 測試
- 可以透過如 Spring MVC 的方式開發 Rest Service,如:
@LambdaLocal("/lleHelloRestService")
public class HelloRestService extends AbstractLambdaRestService {
@RestMethod(httpMethod = HttpMethod.GET, path = "/{firstName}/{lastName}")
public String hello(@RestPath("firstName") String firstName,
@RestPath("lastName") String lastName) {
return String.format("Hello %s, %s!", firstName, lastName);
}
}
- Using Gradle:
repositories {
maven { url "https://jitpack.io" }
}
compile 'com.zaoo.lambda-local:lambda-local:{version}'
- Using other build system: https://jitpack.io/#com.zaoo.lambda-local/lambda-local
Lambda-Local requires at minimum Java 8.
-
Install Lambda-Local in your build file. Ex: Using Gradle:
repositories { maven { url "https://jitpack.io" } } compile 'com.zaoo.lambda-local:lambda-local:{version}'
-
Add a
WEB-INF/web.xml
.<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>com.zaoo.lambda.LambdaLocalServlet</servlet-class> <load-on-startup>1</load-on-startup> <init-param> <param-name>packages</param-name> <param-value>com.zaoo.lambda.example</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
Provide your package name as the
init-param
, and Lambda-Local will scan that package and its sub-package for all classes annotated with '@LambdaLocal'. -
Create your first AWS Lambda Function Handler.
-
If you're building JSON REST services, you can extend
AbstractLambdaRestService
and use annotations to define your REST services by method (Like Spring MVC). Ex:@LambdaLocal("/lleHelloRestService") public class HelloRestService extends AbstractLambdaRestService { @RestMethod(httpMethod = HttpMethod.GET, path = "/{firstName}/{lastName}") public String hello(@RestPath("firstName") String firstName, @RestPath("lastName") String lastName) { return String.format("Hello %s, %s!", firstName, lastName); } }
Please note that:
@LambdaLocal.value
must be the same as your Lambda Function name.- Annotations:
@RestPath
: The parameter is bound to a URI template variable.- Lambda-Local using Jackson to convert Object <-> JSON.
-
If you have setup AWS Lambda using proxy request, you can extend
AbstractLambdaLocalRequestHandler
to process the pre-defined proxy request and response.@LambdaLocal("/lleHelloLambdaProxy") public class HelloLambdaProxy extends AbstractLambdaLocalRequestHandler { @Override public LambdaProxyResponse handleRequest(LambdaProxyRequest input, Context context) { String firstName = input.getQueryStringParameters().get("firstName"); String lastName = input.getQueryStringParameters().get("lastName"); return new LambdaProxyResponse(String.format("Hello! %s,%s", firstName, lastName)); } }
-
You can also use Lambda-Local directly without
AbstractLambdaRestService
orAbstractLambdaLocalRequestHandler
(But with more configurations to do). Please take a look at our sample webapp.
-
- Testing on your local machine. Ex: Using Gradle and Gretty plugin.
- In build.gradle, put:
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin' gretty { servletContainer = 'jetty9' contextPath = '' }
- Run the web app on your local machine.
> ./gradlew appRun
- Open http://localhost:8080/lleHelloRestService or http://localhost:8080/lleHelloLambdaProxy in your browser. (The path depends on your '@LambdaLocal.value')
- In build.gradle, put:
- Running on AWS Lambda and API Gateway
- Create a new AWS Lambda Function with default AWS API Gateway settings.
- Add {proxy+} to all the subpath of the Lambda Function in API Gateway.
Please take a look at our sample webapp.