U guys steal my heart ❤️ every single time in India we says the one who donate the knowledge and education is the god figure for us in form of guru or teacher ❤❤
Instead of coding first and then doing operations second, it would create confusion. First, create the product payload and necessary actions like creating a method interface class, and then do the implementation in the implementation class, and so on. This type of lecture creates a clear vision. The content contains valuable knowledge. Thank you for sharing it with us.
It's always like they just read my mind! I am thinking of course about the stuff and the next day I open FFC and there it is! Just amazing! Kudos to guys for making this all possible!
1- s this the good way to manage exceptions in the controllers ? isn't it better to use ControllerAdvice and ExceptionHandler ? 2- in the controller method it is not a good practice to set the action/verb within the request path since those are determined by the http operations
Hi, I am a beginner and following this tutorial, can you please advise what was wrong with rest api standards?, if possible can you share any pointer so that I cna compare and learn, Thanks!
Sure, I like to put videos on 1.5x but it is impossible here. So need to spend 10 hours to watch the full video then another 10 to 20 hours to code everything. It is, what it is...
Hello! What is the best way to create such a fullstack app, start with the frontend or the backend? Or maybe you have a frontend tutorial for this app?
Thanks it was wonderful. now how about when i need to dockerize this application ? how should i go about it running the dataInitializer class where we commented out some parts?
The all course is messed up, a lot of code is missing on the video. The code itself is not clean, it's breaking REST architecture pattern. I don't like it and won't recommend it to new developers.
can you please make a video on python that cover all the aspect of python from beginner to advanced in very comprehensive manner not just a typical course. I hope 🙏🏻 you guys make one 🕐🕜...
I have a lot of problems following this tutorial with Spring Tools Suite, I've also arrived at 49 minute but I have a lot of config problems also if I've followed your instruction. I can't build the final project with any editor also IntelliJ, i'm so desperate
@@SumitNegiTech I don't know very well but if I follow your tutorial when I instanciate AddNewProduct method on the createProduct STS don't recognize the connection between classes and methods. Also if I import your project there are errror almost everywhere. I'm not a Java expert so it's difficult to me to find the errorr, also with ChatGPT solution I can't solve the mystery so I have deleted everything
Hola, últimamente he buscado una forma de usar el modo database-first con ingeniería inversa de hibernate, pero no he podido con maven, podrias enseñar una forma de hacerlo? Realmente sería util para aquellos que tienen bases de datos con mas de 100 tablas.
How to handle the case when a request is made for POST /products/add without token Currently it's throwing 500 because it cannot find any Authentication object in SecurityContext
I have a concern... Please, why did you clear the cartItems from the cart manually when implementing the logic for clearing the cart, since you are cascading, and the orphan removal is true, it is automatic that once you delete the cart, the cart items in it will also be deleted.
@@williamzayas302 you might have figured it out already but u can just create a package where he does (the menu is just a shortcut) then make a new interface and import all the required things, and make it inherit off JpaRepository, long
@@AAKSHASjavascript is completely separate from java it’s a scripting language used for web and app development. Java spring boot is a back end framework. It uses the java language.
sir, why you put the CascadeType.All to the many side. It so wrong, it could cause to delete all the entity in two both side. For example this public class Product { @ManyToOne(cascade = CascadeType.ALL) @JoinColumn(name = "category_id") private Category category;} When user delete the product and duo to cascade = CascadeType.ALL it also delete the category ( Which is make non-sense). Not only that as category is remove and with orphanRemoval = true in Category class, it will also delete all the product which have that category
Wow just now I'm worried about my backend skill..suddenly a pop up from my notification and came here...wow...universe gave what i want😅
i was trying to find videos related to spring boot but every video was too old and low quality but thank god freecodecamporg somehow read my mind
lol. Java 😂
Bro it's not the universe it's Google tracking our daily life and also our needs
U guys steal my heart ❤️ every single time in India we says the one who donate the knowledge and education is the god figure for us in form of guru or teacher ❤❤
yaar ye easy ha ya tough Matlab jayada samj nahi aa raha esme mujhe
Instead of coding first and then doing operations second, it would create confusion. First, create the product payload and necessary actions like creating a method interface class, and then do the implementation in the implementation class, and so on. This type of lecture creates a clear vision. The content contains valuable knowledge. Thank you for sharing it with us.
It's always like they just read my mind! I am thinking of course about the stuff and the next day I open FFC and there it is! Just amazing! Kudos to guys for making this all possible!
Wow, just incredible! I was looking for project like this to master spring boot.
Seriously just thinking about this and suddenly this video pops up ❤❤
This was uploaded today, something i was looking for.
Dude you saving our life 😢❤❤❤❤❤
can u plss give me source code
More java back-end ...
Hurray ❤
Pls make more java and spring boot vedios
Sincere request
dude this is huge
I just finished a Java Spring Boot course and wanted to learn more about Spring Security and then this video appeared
Pls bring complete machine learning course
At the right time ❤❤❤
very very educating and eye opener.
Daaaaayuuum, just when I needed this the most hahaha
no wayy, it is what i needed
1- s this the good way to manage exceptions in the controllers ?
isn't it better to use ControllerAdvice and ExceptionHandler ?
2- in the controller method it is not a good practice to set the action/verb within the request path since those are determined by the http operations
Amazing thx a lot
Nice tutorial.
sir please make a course on spring micro service please.
You guys are 🎉🎉🎉🎉
Good course, but we should implement a little, then test it and then so on. Here, we kinda keep on writing code without checking in between.
Tysm 🎉
thank u so much
Nice tutorial, but please try and separate the business logic from the controller ( Separation of concerns)
Wow ❤
This is good, but should have followed some rest API standards for api endpoints. Anyway i loved this video.
Hi, I am a beginner and following this tutorial, can you please advise what was wrong with rest api standards?, if possible can you share any pointer so that I cna compare and learn, Thanks!
I think the video is in 1.5x by default
Sure, I like to put videos on 1.5x but it is impossible here. So need to spend 10 hours to watch the full video then another 10 to 20 hours to code everything. It is, what it is...
Thank you... thank you so so much❤
a version in kotlin is needed in 2024 of this exact level
A 9 hour tutorial 😭 that's how you know Springboot is a complicated mofo when it's tutorial takes longer than the entirety of some other courses.
Seems one does not master spring boot but accept learning it for life lol
This is the issue about spring boot, its so complicated and more like a programming language itself. I just hate it.
@@bugraosmansoysal9118😂😂😂😂Same feeling Bro
Hello! What is the best way to create such a fullstack app, start with the frontend or the backend? Or maybe you have a frontend tutorial for this app?
Thanks it was wonderful. now how about when i need to dockerize this application ? how should i go about it running the dataInitializer class where we commented out some parts?
The all course is messed up, a lot of code is missing on the video. The code itself is not clean, it's breaking REST architecture pattern. I don't like it and won't recommend it to new developers.
teacher,nice course,could you give the ppt in the course?
Wowwwwwwww❤❤❤❤
please can you give the frontend part also with how to connect to the backend.
its not a big deal, it just an effort of adding an env variable. but also depends on what do you want to use to build your frontend.
3:15:56 - creating product dto
3:33:31 - json ignore
Back-end project without having unit and integration testing is incomplete 😢.
can you please make a video on python that cover all the aspect of python from beginner to advanced in very comprehensive manner not just a typical course.
I hope 🙏🏻 you guys make one 🕐🕜...
.
.
.
I recommend one of these Python courses:
ruclips.net/video/8DvywoWv6fI/видео.html
ruclips.net/video/eWRfhZUzrAc/видео.html
What are the prerequisites for this course please?
Java basic and core concepts like OOPs and a bit of JDBC, MySQl
@@reon_fernandes Thank you
@reon_fernandes Hey I don't have access to intellij ultimate can i create this project on intellij community edition
@@reon_fernandes and Spring itself lol
righ hiye
Can we get the video of front end implementation of this project?
I have a lot of problems following this tutorial with Spring Tools Suite, I've also arrived at 49 minute but I have a lot of config problems also if I've followed your instruction. I can't build the final project with any editor also IntelliJ, i'm so desperate
whats the problem ??
@@SumitNegiTech I don't know very well but if I follow your tutorial when I instanciate AddNewProduct method on the createProduct STS don't recognize the connection between classes and methods. Also if I import your project there are errror almost everywhere. I'm not a Java expert so it's difficult to me to find the errorr, also with ChatGPT solution I can't solve the mystery so I have deleted everything
Can anybody say when should I start this
finally
Hola, últimamente he buscado una forma de usar el modo database-first con ingeniería inversa de hibernate, pero no he podido con maven, podrias enseñar una forma de hacerlo? Realmente sería util para aquellos que tienen bases de datos con mas de 100 tablas.
Can someone tell why we are using ProductDto and why also images are not being loaded?
The github repo is not fully updated
switch branches to see completed project
@@myintsein7910 what do you mean by branches mate?
❤❤❤❤❤
at the 3:47:24 i think you skip some part!
yeah dude he skipped whole cart class...
@@verzide6594 have you guys finished the course? I'm worried that this video is skipping a lot of parts
@@yeremiapurba4058 i think he skipped some parts but ı completed with myself.
Im having issues with initializing a default Role with the DataInitializer
😍😍😍😍😍😍
please what is the prerequisites?
Just need to have some basic knowledge of Java and Spring boot, that's all
@@dailycodework thank you 🙏
1:02:23
Hi is this microservice based or monolithic..?
👍
I'm about 20 minutes into the video, is it normal to see also category_product table in my database?
I don't think so, I got only three tables category, image, and product
How to handle the case when a request is made for POST /products/add without token
Currently it's throwing 500 because it cannot find any Authentication object in SecurityContext
what about test cases
that can be an excellent opportunity to build on what you learned. Check out the Spring docs for help.
1st comment
I have a concern...
Please, why did you clear the cartItems from the cart manually when implementing the logic for clearing the cart, since you are cascading, and the orphan removal is true, it is automatic that once you delete the cart, the cart items in it will also be deleted.
how can i put a role in a new user?
I got an error when use download img service with postgresSql
Hi! Someone may do their conection using lampp?
What is the intellij theme here?? Can anyone tell me..
Material UI
hi
whats is this code editor ?
Intellij idea (new ui)
🙂🙏🏻
Github link, plz?
description
please github
3:47:21 You skiped one video I guess
is this webstorm software ?
Intellij Ultamate
32:22 why don't I get an option to create a repository?
Hello, I'm experiencing the same. Anyone knows how to do this in VScode? Please helppp!!
@@williamzayas302 you might have figured it out already but u can just create a package where he does (the menu is just a shortcut) then make a new interface and import all the required things, and make it inherit off JpaRepository, long
400
Why you didn’t handled control exceptions with @ControllerAdvice ?
Plz upload Javascript,
Is that Java Spring boot app?
@@AAKSHASjavascript is completely separate from java it’s a scripting language used for web and app development. Java spring boot is a back end framework. It uses the java language.
If Google is still not enough, look for a simpler career.
@@th3kdot I didn't know this. Only Super Genius know this.
Anyone here 2024 ?
can I do the same using vscode?
Better to go with Intellij if you doing Java Development, the free version is good enough
Lewis Margaret Young Angela Harris Sharon
Upload excel
RTFM
Too much right here.
sir, why you put the CascadeType.All to the many side. It so wrong, it could cause to delete all the entity in two both side.
For example this
public class Product { @ManyToOne(cascade = CascadeType.ALL)
@JoinColumn(name = "category_id")
private Category category;}
When user delete the product and duo to cascade = CascadeType.ALL it also delete the category ( Which is make non-sense). Not only that as category is remove and with orphanRemoval = true in Category class, it will also delete all the product which have that category
Their is recusive json response problem in my product api? How to solve it?
@JsonIgnore use this annotation where you are getting recursion
95618