I tried with many websites and hundreds of videos but none get me success response.... urs was to the point and perfect for a beginner. Thanks.
@JensTheTrader Жыл бұрын
thank you so much, exactly what i was looking for
@chadchampion33843 жыл бұрын
Great video bro 10/10 content keep it up love from Palau Community College!
@althafshaik86123 жыл бұрын
Amit if I have 100 tables when I want to fetch the data then how to write a query for that?
@Calabronx4493 жыл бұрын
How do you print a specifique user by his id form db, in a html page? I just print all users data with a list in the controller similar with you did in this video. But it is not what i want,please help
@shekhadaradhika42653 жыл бұрын
Got any ans ?
@jcen_2 жыл бұрын
I've tried to fix my code for 2 hours, because it was returning empty json objects (like in your video). Turned out I made setters for my model class, but didn't make any getters lol. Thanks for help 👍
@SHUBHAMSHARMA-ip1xi2 жыл бұрын
Please make a specific video on how you created db and hosted it in spring boot(2:04).
@Sairam-bw5hv3 жыл бұрын
Thank you, here on service call implementation, we dont have any select query to fetch the data...but how we got the data ?
@amitvikram123 жыл бұрын
That's the beauty of JPA/Hibernate. You do not have to write queries. Although you can write SQL queries if you want to using @Query annotation in your repository.
@PankajKumar-su5dq3 жыл бұрын
@@amitvikram12 Let's say its join query on multiple tables then what all changes will be required in Usermodel class ?
@padmesh50362 жыл бұрын
Is there any github link available fr this
@sharadshinde91012 жыл бұрын
I have to make data retrival webservice in springboot byId From oracle db ,but without using hibernate
@Prakash227-P62 жыл бұрын
Bro..how to update that data into another table by using springboot please broo tell me
@sujoymistry6132 жыл бұрын
what is this findall method()?
@amitvikram122 жыл бұрын
repository.findAll() method returns all rows of the corresponding table. It is an auto-generated method. When we annotate a class with @Repository and it extends CrudRepository/ JpaRepository a set of methods are generated such as findAll(), findById(), deleteById() etc. For more information please read about Hibernate, JPA