Created
October 12, 2020 11:57
-
-
Save bmccann36/bcf145b89a7ad4d940b90f86900fcff5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
functions: | |
bookStoreApp: # the bookStoreApp function houses the whole app | |
handler: com.springbootslsdemo.SpringLambdaHandler | |
events: | |
- http: | |
path: / | |
method: ANY | |
- http: | |
path: /{proxy+} # all REST resource paths will lead to this function being invoked | |
# the spring boot framework will handle the routing to the correct classes | |
method: ANY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment