#28 Project using Spring Search Feature

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025

Комментарии • 46

  • @MickenCZProfi
    @MickenCZProfi 4 месяца назад +4

    The clarity of this series is incredible, thanks a lot.

  • @user-cd8cg3yr1q
    @user-cd8cg3yr1q 6 месяцев назад +5

    Beautiful series in the first video of this series i had 0 knowledge in spring , now i have a good knowledge all thanks to u sir , really great way of teaching and excellent way of explaining the concept . Thank you so much sir

  • @Suraj_Singh___
    @Suraj_Singh___ 6 месяцев назад +1

    Just started watching your spring series. Love the way you explain things. Concepts are getting clear now which I was using without prior knowledge.

  • @lootster
    @lootster 4 месяца назад +1

    00:04 Implementing the search feature using Spring Data JPA
    01:53 Implementing search feature using JPQL in Spring
    03:39 Implementing search feature in front end
    05:25 Implementing a search feature in the backend server
    07:21 Implementing search feature using Spring
    09:10 Using SQL functions for text matching in JPQL
    11:02 Implementing search feature with keyword comparison
    13:21 Adding and testing products for search feature

  • @Devivl
    @Devivl 5 месяцев назад +1

    I like how simple and easy you have implemented the search on the page. It's a great lesson. Useful.

  • @ujjwaljain8899
    @ujjwaljain8899 6 месяцев назад +3

    Please cover spring security as well, your explainations are amazing

  • @sivaprasath6574
    @sivaprasath6574 6 месяцев назад +7

    Please cover spring security sir, pls talk about jwt as well

  • @shivarajme
    @shivarajme Месяц назад

    Much appreciate your efforts

  • @sharantheja
    @sharantheja 6 месяцев назад

    Thanks for the entire series !!

  • @TheInsideStory007
    @TheInsideStory007 3 месяца назад +4

    @Query("SELECT p from Product p WHERE "+"LOWER(p.name) LIKE LOWER(CONCAT('%', :keyword, '%')) OR "
    +"LOWER(p.description) LIKE LOWER(CONCAT('%', :keyword, '%')) OR "
    +"LOWER(p.brand) LIKE LOWER(CONCAT('%', :keyword, '%')) OR "
    +"LOWER(p.category) LIKE LOWER(CONCAT('%', :keyword, '%'))")

  • @AkshayGuptaMe
    @AkshayGuptaMe 6 месяцев назад +1

    great video to learn springboot. Please add authentication

  • @mytechniques3453
    @mytechniques3453 6 месяцев назад

    Thank you sir as our placements are coming it is very useful ❤️🙌

  • @ousmanetanorcisse9774
    @ousmanetanorcisse9774 6 месяцев назад +4

    We are Still here Sir 😍

  • @MoinulIslamKhan-u7x
    @MoinulIslamKhan-u7x 3 месяца назад

    Sir, thanks for your beautiful tutorial. I have been waiting for this tutorial for a long time and you describe it as a beautiful way. I have a question sir, is it not better to search in the front end as we have the list in front end rather search it every time from server. If so then please make a tutorial sir

  • @GuessGameFun
    @GuessGameFun 6 месяцев назад

    wow, Thank for teaching spring boot

  • @NandinerdeneMandakh
    @NandinerdeneMandakh 5 месяцев назад

    Thank you for the best content always!

  • @tamaladhikari7950
    @tamaladhikari7950 6 месяцев назад

    Hi navin I would suggest use example matcher api or criteria api no need to do hard coding sql

  • @Alirazamahar
    @Alirazamahar 4 месяца назад

    thanks for the incredible tutorial

  • @rudrajha1002
    @rudrajha1002 4 месяца назад

    Thanks ....Telusko ❤️

  • @adarsh_9935
    @adarsh_9935 6 месяцев назад

    You are god for me ❤❤❤

  • @TirthPrajapati-by9mu
    @TirthPrajapati-by9mu 6 месяцев назад

    Thank you sir ❤❤❤

  • @sumitshinde12
    @sumitshinde12 6 месяцев назад

    Nice video sir❤❤

  • @roopnikharsalon6344
    @roopnikharsalon6344 6 месяцев назад

    please complete this series ..

  • @mishaeldavid5015
    @mishaeldavid5015 6 месяцев назад

    Please complete the series

  • @karthickraja5832
    @karthickraja5832 3 месяца назад

    Hi Navin, can you do a series on react js for beginners

  • @Suraj_Singh___
    @Suraj_Singh___ 6 месяцев назад

    Waiting for next

  • @naraynwetal6544
    @naraynwetal6544 5 месяцев назад

    Really excellent

  • @rugveddhabale7883
    @rugveddhabale7883 5 месяцев назад

    Hello sir, thanks for all the learnings you provided till this video, there's a request from me can you please share how to deploy the same project on any cloud/web platform because there are multiple platforms where we as a student get confused which to follow and which to not.

  • @omborate9914
    @omborate9914 6 месяцев назад

    sir please can you explain slow but you are really great

  • @naraynwetal6544
    @naraynwetal6544 5 месяцев назад

    Really loving

  • @shakthiviviyn
    @shakthiviviyn 6 месяцев назад

    Thank you for the videos

  • @Jenisha-tv2mi
    @Jenisha-tv2mi 5 месяцев назад

    good series

  • @vishaldindalkop294
    @vishaldindalkop294 4 месяца назад

    Thank you for the video

  • @MohammedThayyabAR
    @MohammedThayyabAR 6 месяцев назад

    when
    when will series end?

  • @BachirAnsar
    @BachirAnsar 2 месяца назад

    Thank you sir

  • @pampaaGaming
    @pampaaGaming 6 месяцев назад

    sir please explain login , signup and role based authentication

  • @emotinal_pain
    @emotinal_pain 4 месяца назад

    Thanks a lot

  • @zerogravity6025
    @zerogravity6025 3 дня назад

    @Query("SELECT p from Product p WHERE " +
    "LOWER(p.name) LIKE LOWER(CONCAT('%', :keyword, '%')) OR " +
    "LOWER(p.description) LIKE LOWER(CONCAT('%', :keyword, '%')) OR " +
    "LOWER(p.brand) LIKE LOWER(CONCAT('%', :keyword, '%')) OR " +
    "LOWER(p.category) LIKE LOWER(CONCAT('%', :keyword, '%'))")

  • @vinitrajbingi2875
    @vinitrajbingi2875 6 месяцев назад

    complete the series

  • @vishalgitte2629
    @vishalgitte2629 5 месяцев назад

    Validation failed for query for method public abstract java.util.List com.ProjectDemo.EcomWeb.repository.productRepo.searchProducts(java.lang.String)
    why do getting error

  • @durgeshjadhav01
    @durgeshjadhav01 2 месяца назад

    nice

  • @gabriell_r23
    @gabriell_r23 Месяц назад

    666 Nooooo

  • @orekisato9145
    @orekisato9145 6 месяцев назад

    First please speak slower.❤

  • @DevGhost97
    @DevGhost97 Месяц назад

    thank you sir