Deploy a Spring Boot Application to AWS Lambda with an API Gateway

Поділитися
Вставка
  • Опубліковано 18 тра 2024
  • In this video, I explain how to deploy a Spring Boot application to AWS Lambda. With Spring Boot, I can create several endpoints, so I need an API Gateway to create a proxy from a single URL to many endpoints inside my AWS Lambda.
    This video belongs to a playlist where I show how to deploy Spring Boot applications to several AWS services: studio.ua-cam.com/users/playlistP...
    Github repository: github.com/serlesen/java-lamb...
    My NEW eBook: sergiolema.dev/git-book/
    Blog: bit.ly/47ornJL
    LinkedIn: bit.ly/41Nn61q
    Facebook: bit.ly/47rc9nh
    My Desktop:
    • Laptop: Macbook Pro 16" 2019
    • Gaming Chair: amzn.to/47Vu6ed
    • Mouse: amzn.to/3HoBwM1
    • Desk: amzn.to/48Tc5Oi
    • Screen: amzn.to/48VZkCL
  • Наука та технологія

КОМЕНТАРІ • 20

  • @vasylbielozertsev5861
    @vasylbielozertsev5861 28 днів тому

    Very helpful video! I couldn't run the Lambda function for a long time. I followed the recommendations from the video, and everything started working.

  • @Jaksteroide
    @Jaksteroide Місяць тому

    I came from the "Spring Boot y Java en español" Facebook community... And I have to say that It was a very useful video to give me a brief idea of how aws lambda and spring boot deployment process works. New sub here!

  • @johncerpa3782
    @johncerpa3782 Місяць тому

    Great video

  • @fipabrate
    @fipabrate Місяць тому

    awesome video!

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  Місяць тому

      Thank you!

    • @fipabrate
      @fipabrate Місяць тому

      @@TheDevWorldbySergioLema i don't know why i get build.gradle when i create maven archtype project :/ Currently I'm trying to test my app with aws toolkit plugin before deploying it. Don;t know what i am doing but here goes nothing 🥲

  • @JohnBrosan
    @JohnBrosan Місяць тому

    Great video! I am wondering if you have the template file for AWS SAM do you need to create and upload the lambda? SAM should do that for you. I am currently working on a DynamoDB trigger and would like to have the Spring features you mentioned along with AWS SAM to deploy. SAM init, uses the old AWS SDK for Java and not AWS SDK for Java 2.x unless there is something I am doing wrong.

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  Місяць тому +1

      The SAM template is available in the Github repository of the project.
      I didn't use it because I wanted to explain step by step all the services used.

    • @JohnBrosan
      @JohnBrosan Місяць тому +1

      @@TheDevWorldbySergioLema Fantastic! Thank you! I look forward to more of your content. :-D

  • @perek3226
    @perek3226 Місяць тому

    Hi man, great video! I have a question, you've created a maven archetype project and using ready dependencies. What if I already have ready Spring Boot project? I don't want recreate whole project with a lot of dependencies, connected DB and other. What I need to do then? Thank you

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  Місяць тому +1

      Hi, you need to create the main method according the my project, add the StreamLambdaHandler, and the Maven dependencies to build the JAR or ZIP file

    • @perek3226
      @perek3226 Місяць тому

      @@TheDevWorldbySergioLema will it work if I am using Gradle as my building system?

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  Місяць тому +1

      Yes, using Gradle or Maven changes nothing about the application nor the packaging. What you must change is the way the plugins and dependencies are fetch. I remember when building the archetype that both the pom.xml and gradle.build are available.

  • @daribo1
    @daribo1 Місяць тому

    How do you deal with coldstart? Normally the instance is being shutdown after apporox. 5-7 minutes. Is it possible to keep it alive for not having long responses in between?

  • @PorkyPrank
    @PorkyPrank 8 днів тому

    If I deploy telegram bot using spring boot, the process is the same?