Тёмный
No video :(

AWS Lambda Java: How to create your first AWS Lambda Function in Java 

Dan Vega
Подписаться 60 тыс.
Просмотров 39 тыс.
50% 1

In this tutorial, you will learn how to create your first AWS Lambda function in Java. I will walk you through how to create the project from scratch using Maven, how to write the serverless function using Java, and finally how to build and deploy the function to AWS.
🔗Resources & Links mentioned in this video:
Serverless Spring: tanzu.vmware.c...
GitHub Repo: github.com/dan...
👋🏻Connect with me:
Website: www.danvega.dev
Twitter: / therealdanvega
Github: github.com/dan...
LinkedIn: / danvega
Newsletter: www.danvega/de...
SUBSCRIBE TO MY CHANNEL: bit.ly/2re4GH0 ❤️

Опубликовано:

 

29 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 48   
@James-to6lh
@James-to6lh Год назад
Love these videos Dan, keep em coming! Doing the community a favour. big time.
@DanVega
@DanVega Год назад
Thank you for the kind words James.
@trashsearch
@trashsearch 20 дней назад
Thanks Dan!
@Confusedcapybara8772
@Confusedcapybara8772 Год назад
Thumbs up for making the tests!
@huaqian3654
@huaqian3654 10 месяцев назад
This is superb, Dan! Crystal clear and right to the point!
@MrYensei
@MrYensei Месяц назад
good video Dan! Thanks for sharing
@sparkleasing9334
@sparkleasing9334 Год назад
* link to the repo included. Great tutorial!
@MarcoDebernardi-xj8sv
@MarcoDebernardi-xj8sv 10 месяцев назад
Dan Vega's video = upvote. Thanks man!
@mvlad7402
@mvlad7402 Год назад
Very good! Let's see more advances java lambda function video.
@DannyONealCodes
@DannyONealCodes Год назад
This is great Dan! Please make more JAVA/AWS Lambda vids.
@umittas20000
@umittas20000 Год назад
Very clean explanation. Thanks
@craycarr
@craycarr Год назад
Thank you very much Dan!
@vaidyaakshay
@vaidyaakshay 11 месяцев назад
Thanks for the video. This helps a lot.
@vatvalusha
@vatvalusha Год назад
I love you Dan, maximum useful video. Thanks.
@BobFixOn
@BobFixOn Год назад
Great video! Thanks for sharing!
@vaibhavsrivastava4645
@vaibhavsrivastava4645 Год назад
Very useful content Dan..
@DanVega
@DanVega Год назад
Glad it was helpful!
@infobarbosa
@infobarbosa Год назад
Awesome! Thank you!
@lasanthasamarasekara638
@lasanthasamarasekara638 Год назад
Great tutorial. Thanks
@PrashantZombade
@PrashantZombade Год назад
Great video! Would love to know more about Lambda, perhaps a bit complicated, or a real-world example will greatly help.
@bertil0424
@bertil0424 Год назад
Lambda is a serverless compute service, or a Function as a Service (FaaS) offering, that runs code in response to events and automatically manages the underlying compute resources for you. This makes it a great choice for hosting microservices, data processing jobs, and event-driven applications. A real-world example of Lambda is an image processing application. For example, you can set up a Lambda function to automatically resize user-uploaded images for different platforms. When a user uploads an image, the function is triggered and automatically resizes the image to the specific dimensions required for the platform. The Lambda function can also store the resized images in an S3 bucket. This type of application would be difficult to build and manage on a traditional server, but is easily achievable with Lambda.
@AlexeySilichenko
@AlexeySilichenko Год назад
Thank you very much! Great tutorial!!!
@user-zn2ym3qj1v
@user-zn2ym3qj1v Год назад
You cant imagine how much I grateful to you for this videos. Thank you a lot for your amazing job!
@selvasun4491
@selvasun4491 Год назад
Appreciated. Very useful.
@temujainjenkins8195
@temujainjenkins8195 8 месяцев назад
Amazing! Thank you!
@DanVega
@DanVega 8 месяцев назад
Thank you!
@ahmedbishree9429
@ahmedbishree9429 Год назад
I'd like to see more like this great tutorial thanks dear
@giovannifrison6941
@giovannifrison6941 Год назад
Keep going Dan!
@ChazWinter
@ChazWinter 7 месяцев назад
7:44 The file name specified in the terminal is not the filename you're pointing your mouse at in the directory. And then you file you uploaded was the ORIGINAL file, and not the SHADED one that replaced it. It's stuff like this that confuses me. Aren't those two different files? If the file names are intentionally different, that seems like something to mention. Why is the filename in the terminal different from the ones in the directory? If the point was to replace the ORIGINAL jar with the SHADED jar, why did you then upload the ORIGINAL jar instead?
@darkzero2221
@darkzero2221 Год назад
Thank you very much!!!!
@vigneshkv2478
@vigneshkv2478 Год назад
❤ this is awesome one
@himalaygswm
@himalaygswm 8 месяцев назад
how to install maven shade plugin for intelliJ?
@rajemon
@rajemon 7 месяцев назад
Nice
@badscrew4023
@badscrew4023 9 месяцев назад
Good job well done :)
@yunlin3980
@yunlin3980 Год назад
In the 1st example, i don't understand when you 'test' using empty string, and 'test' succeed. what test is it? is the lambda running the junit test you write earlier, because it's also packed in the jar? or it's just calling the handler deployed in aws and see that SOME response is coming back (but not verifying the value of response)?
@AleksandarT10
@AleksandarT10 Год назад
Great video! I guess maven shade plugin is meant to be used to create uber jar for non Spring Boot apps, because Spring Boot uses spring-boot-maven-plugin, is that correct? Also just as a food for thought, why is maven shade not used by default for Spring? Any advantages of the spring-boot-maven plugin? Or it is built on top of maven shade plugin?
@coderlicious6565
@coderlicious6565 Год назад
Superb. Thank you Do you know if there is a way to configure your AWS lambda account, to tell Amazon a max dollar amount you want to spend, and then if you accidentally exceed that amount with your resources, they either immediately notify you, or just simply shut down your site? I'd prefer it works that way. I'd hate to get a big surprise bill from amazon, because I didn't know my code was very inefficient, and the code was spending too much time during a function invocation.
@togerait
@togerait Год назад
I can't understand why your jar is sno small (2.5KB). My Jar is 16.
@jopadjr
@jopadjr Год назад
11th...Thanks Dan.
@nolediganamimadre5714
@nolediganamimadre5714 Год назад
how can i enable msp autocomplete?
@JhoseBieel
@JhoseBieel 3 месяца назад
Were you able to activate MSP autocomplete? How do this ? help me pls
@nolediganamimadre5714
@nolediganamimadre5714 3 месяца назад
@@JhoseBieel Hi, did not configure it.
@joseeduardoguerreromartine3400
🫶🇲🇽
@sparkleasing9334
@sparkleasing9334 Год назад
There is no link to the repo (as promised in the video). Don't waste time here.
@DanVega
@DanVega Год назад
or... Dan it seems like you missed putting the link to the Github Repository in the description. Can you please add that? 🤦‍♂
@sparkleasing9334
@sparkleasing9334 Год назад
Thanks for adding the repo in the description​ @Dan Vega. Great tutorial (whole series). I was just frustrated with the practice of not including source code in the tutorial. I saw that too many times and I'm guessing that motivation comes from the fact that source code significantly accelerates the learning process which leads to less time spent on the video.
@charik7343
@charik7343 7 месяцев назад
what to add actullay complete description ? @@DanVega
@danallford8760
@danallford8760 3 месяца назад
@@DanVega maybe that should be “go ahead” and add that. Loved the video but lost count of the number of times you say “I’m going to [go ahead and] [do thing]…”. But hey, still a good intro! 👏
Далее
Java Problem Solving Tutorial: Left to Right Evaluation
17:11
Understand Clean Architecture in 7 Minutes
7:02
Просмотров 98 тыс.
Woman = best friend🤣
00:31
Просмотров 3,7 млн
Chelsea gym be like.. 😅⚽️
00:20
Просмотров 14 млн
How do I deploy AWS Lambda using Terraform?
18:52
Просмотров 44 тыс.