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: aws-serverless-java-container-spring/src/main/java/com/amazonaws/serverless/proxy/spring/LambdaSpringApplicationInitializer.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -88,10 +88,10 @@ public void setRefreshContext(boolean refreshContext) {
88
88
89
89
/**
90
90
* Given a request and response objects, triggers the filters set in the servlet context and
91
-
* @param request
92
-
* @param response
93
-
* @throws ServletException
94
-
* @throws IOException
91
+
* @param request The incoming request
92
+
* @param response The response object Spring should write to.
93
+
* @throws ServletException When an error occurs during processing or of the request
94
+
* @throws IOException When an error occurs while writing the response
Copy file name to clipboardExpand all lines: aws-serverless-java-container-spring/src/main/java/com/amazonaws/serverless/proxy/spring/SpringBootLambdaContainerHandler.java
+4-3
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@
36
36
* object behind the scenes to proxy requests. The default implementation leverages the `AwsProxyHttpServletRequest` and
37
37
* `AwsHttpServletResponse` implemented in the `aws-serverless-java-container-core` package.
38
38
*
39
-
* Important: Make sure to add {@link LambdaFlushResponseListener} in your SpringBootServletInitializer subclass configure().
39
+
* Important: Make sure to add <code>LambdaFlushResponseListener</code> in your SpringBootServletInitializer subclass configure().
40
40
*
41
41
* @param <RequestType> The incoming event type
42
42
* @param <ResponseType> The expected return type
@@ -53,7 +53,7 @@ public class SpringBootLambdaContainerHandler<RequestType, ResponseType> extends
53
53
* Creates a default SpringLambdaContainerHandler initialized with the `AwsProxyRequest` and `AwsProxyResponse` objects
54
54
* @param springBootInitializer {@code SpringBootServletInitializer} class
55
55
* @return An initialized instance of the `SpringLambdaContainerHandler`
56
-
* @throws ContainerInitializationException
56
+
* @throws ContainerInitializationException If an error occurs while initializing the Spring framework
0 commit comments