#15 Spring Web Http methods GET and POST

  Рет қаралды 44,666

Telusko

Telusko

Күн бұрын

Пікірлер: 77
@ЕвгенийВовк-ы7ь
@ЕвгенийВовк-ы7ь 7 ай бұрын
When you educate through mistakes, it's better understood and remembered. Thank you so much!🙏
@lootster
@lootster 7 ай бұрын
00:02 Introduction to HTTP methods GET and POST 02:07 HTTP methods include GET, POST, PUT, DELETE 04:02 Understanding HTTP status codes for request responses 06:00 Creating a method to get a single product by its ID 08:07 Using Spring Web Http methods GET and POST 10:15 Using Spring annotations for dynamic variables and path matching 12:22 Creating methods to fetch and store product data 14:27 Using different HTTP methods for same URL 16:26 Troubleshooting unsupported operation error for POST request. 18:27 Utilizing @RequestBody annotation to receive data from client in Spring web controller 20:16 Understanding GET and POST methods in Spring Web
@varshithsamineni872
@varshithsamineni872 4 ай бұрын
You explain everything like a story, which is awesome. That’s a unique strength of Navin Reddy.
@partapupreetham9518
@partapupreetham9518 5 ай бұрын
public Product getProductById(int id) { for(Product i: products) { if(i.getId() == id) { return i; } } return null; }
@kushwahcreation8882
@kushwahcreation8882 Ай бұрын
i dont have idea about how i iterate on list of objects , can u please help me!!!
@gani3381
@gani3381 Ай бұрын
@@kushwahcreation8882 Enhanced for loop: In 3rd line 'Product' is to mention object type of 'i' in each iteration and 'products' denotes list of products(List).
@S_v_e_T
@S_v_e_T 6 ай бұрын
Thak you for your efforts! I really appreciate it. There are many generous people here on KZbin, who share their knowledge. To create these series, explaining the steps, showing the mistakes/errors in the process is even more valuable.
@ameybhandari6865
@ameybhandari6865 7 ай бұрын
this series is going great!!. keep it up and keep posting such knowledgeable videos
@user-cd8cg3yr1q
@user-cd8cg3yr1q 6 ай бұрын
Great way of explaining things . Please keep uploading more such videos.
@JoshTonyKlementJ
@JoshTonyKlementJ 7 ай бұрын
Sir, I have one doubt. I learned from you Sir but how did you learn this and what are the resources are you using to get knowledge in new tools. Can you explain it deliberately Sir
@Sidex150-g1p
@Sidex150-g1p 5 ай бұрын
I believe it's hard work and that one big book even my sir used to use and that's why he was brilliant like this guy. The complete reference java something edition.
@daisydai382
@daisydai382 5 ай бұрын
I like the way how you teach "RequestBody", saving my time from debugging
@pranaypaul6361
@pranaypaul6361 7 ай бұрын
Simplicity at its best.
@ErPPankaj
@ErPPankaj 5 ай бұрын
Learning with errors is a good method, thanks. :)
@isha6510
@isha6510 5 ай бұрын
@NoArgsConstructor I had to add this for code to work. In case someone else is also facing "Failed to convert value of type 'null' to required type 'int'; Failed to convert from type [null] to type [int] for value [null]" error
@ibrahimzaky3056
@ibrahimzaky3056 7 ай бұрын
You are amazing ... waiting more lectures ... thanks sir.
@CodeProWhite
@CodeProWhite 7 ай бұрын
waiting for more and more lectures from you
@akashjaiswal696
@akashjaiswal696 7 ай бұрын
Thank you for uploading, please upload daily
@maheshjangili657
@maheshjangili657 7 ай бұрын
Thanks Naveen garu for the series
@dasharathk9669
@dasharathk9669 5 ай бұрын
covering the topic is topclass 👍👍
@DevGhost97
@DevGhost97 Ай бұрын
Thank you sir Please continue this series
@techcrunch-x4v
@techcrunch-x4v 3 ай бұрын
13:44 Hibernate also does that right?
@amrhossam8058
@amrhossam8058 6 ай бұрын
thank you Navin for your detailed explanation
@Devivl
@Devivl 5 ай бұрын
Need more likes for this very clever Mr. Alien!
@vishnukhatri6796
@vishnukhatri6796 6 ай бұрын
Thanks sir for easy explanation 😃😎
@Akashkumar-sq1hr
@Akashkumar-sq1hr 5 ай бұрын
Thanku Sir! u made my learning so simple
@jairramirez6900
@jairramirez6900 7 ай бұрын
Love your content!
@sharantheja
@sharantheja 6 ай бұрын
Thanks for the lectures and the mistakes are good when learning.
@abishekmagar8790
@abishekmagar8790 7 ай бұрын
You're a amazing Sir
@venkatbongi1945
@venkatbongi1945 Ай бұрын
Awesome sir love from vizag
@deepakbv636
@deepakbv636 7 ай бұрын
Navin sir please give the source of get, post, put and delete(upload in the github and share the link in description )
@akashmondal3952
@akashmondal3952 5 ай бұрын
I am getting with status 405 Request method POST is not supported
@NandinerdeneMandakh
@NandinerdeneMandakh 5 ай бұрын
Appreciate your every video!
@Yosinago
@Yosinago 7 ай бұрын
hey, I have a question. if I get the same product ID, name, and price it duplicates in the server. how to avoid that?
@varadkulkarni3942
@varadkulkarni3942 4 ай бұрын
Great series sir
@kshitizrohatgi2785
@kshitizrohatgi2785 5 ай бұрын
Since REST apis are stateless how you are able to manage new entry in the system and get it return backed
@AnubhavSingh-mg2ls
@AnubhavSingh-mg2ls 7 ай бұрын
continue the series please
@Akashee13Dev
@Akashee13Dev Ай бұрын
Sir , I am having a small doubt in this Video , In the ProductService class you used pre defined products lists for Get API . In Post call you added another item to that List . I expected that It wont come in Get API since that new item stored only inside the Object scope of Service classs in the POST call. But How that New item came in the Get call ? I thought you used static but you non static global variable only .
@renaldywijayaputra6560
@renaldywijayaputra6560 6 ай бұрын
really helpful, thanks a lot 🥶🥶
@Jenisha-tv2mi
@Jenisha-tv2mi 5 ай бұрын
Good series!
@Sidex150-g1p
@Sidex150-g1p 5 ай бұрын
He educates 😤
@Rocky4375-v9y
@Rocky4375-v9y 7 ай бұрын
CFBR ❤
@kishanrawatxo
@kishanrawatxo 7 ай бұрын
Thank you sir for your video's ❤
@lakshanchamod1208
@lakshanchamod1208 Ай бұрын
so far so good
@Aaaronka
@Aaaronka 7 ай бұрын
Well explained!
@vishaldindalkop294
@vishaldindalkop294 6 ай бұрын
Thank you for the video ☺
@AjayKumar-go4jr
@AjayKumar-go4jr 4 ай бұрын
Nice content!
@JoshTonyKlementJ
@JoshTonyKlementJ 7 ай бұрын
Thank You For the Video Sir
@AimanNorhisham-l2m
@AimanNorhisham-l2m 4 ай бұрын
Good content
@varunpalsingh3822
@varunpalsingh3822 7 ай бұрын
thank you sir 🙂
@abdelkrimessassi7311
@abdelkrimessassi7311 Ай бұрын
Thank you
@emotinal_pain
@emotinal_pain 3 ай бұрын
Thank you so much
@DeepCoderMK
@DeepCoderMK 10 күн бұрын
Thank you
@udhayakumaranandharaju5626
@udhayakumaranandharaju5626 7 ай бұрын
Awesome
@arunabhachatterjee9979
@arunabhachatterjee9979 2 ай бұрын
StreamAPI link please
@Ayoubchammakh
@Ayoubchammakh 7 ай бұрын
thanks a lot
@sanjaysanju220
@sanjaysanju220 7 ай бұрын
Sir pls gave me udemy coupon sir
@theCHAD_666
@theCHAD_666 7 ай бұрын
❤❤❤❤❤
@programming8187
@programming8187 2 ай бұрын
12:30
@golmatol6537
@golmatol6537 7 ай бұрын
Cool.
@durgeshjadhav01
@durgeshjadhav01 2 ай бұрын
nice
@sasikumar4183
@sasikumar4183 Ай бұрын
🎉
@krishnarajjayadan2925
@krishnarajjayadan2925 5 ай бұрын
@ARGOD2213
@ARGOD2213 6 ай бұрын
stream api
@jitendraharbola9773
@jitendraharbola9773 7 ай бұрын
Sir pls dont upload udemy paid content here
@based-david
@based-david 6 ай бұрын
was
@77-siddharthsattyam24
@77-siddharthsattyam24 3 ай бұрын
for(P :products){ if(P.id == prodid) return P}
@deepak_jain
@deepak_jain 5 ай бұрын
Please let me know how to solve this error { "timestamp": "2024-08-05T17:15:16.260+00:00", "status": 405, "error": "Method Not Allowed", "path": "/products/104" }
@ankit42827
@ankit42827 2 ай бұрын
try to use chatgpt as well if possible, you will get more clearity
#16 Spring Web PUT and DELETE
12:03
Telusko
Рет қаралды 25 М.
HTTP Request Methods | GET, POST, PUT, DELETE
3:01
Curious Code
Рет қаралды 111 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
#14 Spring MVC and Layers
17:14
Telusko
Рет қаралды 41 М.
Путин ответил на ультиматум Трампа
7:25
Diplomatrutube
Рет қаралды 2,4 МЛН
Full HTTP Networking Course - Fetch and REST APIs in JavaScript
5:08:48
freeCodeCamp.org
Рет қаралды 937 М.
#17 Spring Data JPA
11:01
Telusko
Рет қаралды 36 М.
What is REST API? | Web Service
11:28
Telusko
Рет қаралды 3,1 МЛН
How to call a Java REST API using JDK Http Client
22:23
Dan Vega
Рет қаралды 11 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН