Vue JS + Spring Boot REST API Tutorial | Full Stack Development

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

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

  • @JavaGuides
    @JavaGuides  3 года назад +19

    Most requested video on this channel.
    Now, you can find "Spring Boot + React full-stack", "Spring Boot + Angular full stack" and "Spring Boot + Vue full-stack" videos on this channel.

  • @dilaragoral106
    @dilaragoral106 2 года назад +3

    this tutorial saved my life during my job application task. thanks a lot!!

  • @javatechnology24
    @javatechnology24 3 года назад +5

    Thanks for all the full stack development videos. You deserve more subscribers

  • @yoyoboy500
    @yoyoboy500 Год назад +1

    Thank you for the amazing tutorial. Sending love from Japan

  • @SamP-r5x
    @SamP-r5x Год назад

    Great Tutorial! Hoping to see more Vue JS and spring boot tutorials.

  • @weixiangng8279
    @weixiangng8279 Год назад

    Your video and tutorials are absolutely amazing and fun to watch. Very insightful.

  • @pawebugiel319
    @pawebugiel319 10 месяцев назад

    Great content. Thank You !

  • @ibrexg
    @ibrexg 2 года назад +1

    Thanks for the nice and clean video. It would be nice to add more parts e.g. sending data from the frontend to the backend.

  • @valentinvalenciavalencia7299
    @valentinvalenciavalencia7299 Год назад

    Excellent tutorial. thank you

  • @jelenavalo5743
    @jelenavalo5743 3 года назад +1

    very good tutorial, thank you!
    btw.
    @19:30 you could actually write employeeRepository.saveAll(Arrays.asList(employee1, employee2, employee3)); to avoid repetition and without creating separate list first

    • @JavaGuides
      @JavaGuides  3 года назад

      At a time only one employee created and saved in DB so why to call saveAll method here. For bulk operations you can use saveAll method.

  • @Serpci
    @Serpci 8 месяцев назад

    this was great, thank you so much

  • @anyuferrari
    @anyuferrari 2 года назад

    Thank you very much! This really helped me begin to understand vue.js

  • @trueblue08281
    @trueblue08281 3 года назад +5

    Please include update,add,and delete button then it will be perfect

  • @OleksiiKosiuk
    @OleksiiKosiuk 3 года назад +1

    Great lesson. Thanks!

  • @chilhoankwon9073
    @chilhoankwon9073 2 года назад +2

    Java Guides explains about populating data from backend API, Based on his explanation, I just finished Backend and FrontEnd solution for Vue JS+Sprong BOOT Rest API CRUD. Any one who would like to know more about CRUD use the below codes.
    github.com/chilkwon/employeevue --> for FrontEnd solution
    github.com/chilkwon/springboot-backend -->For Backend Solution

  • @vehimii
    @vehimii 2 года назад

    Thank you very much, it worked.

  • @WenderOliveiraSilva
    @WenderOliveiraSilva 2 года назад

    How to delivery an application like that? I would thing that I need to "compile" the JS and HTML and copy to SpringBoot Project resource directory? How to do this? Where I should to start?

  • @shakeelahammadmadabhavi5313
    @shakeelahammadmadabhavi5313 3 года назад

    Very nicely explained, thank you 🙏

  • @meenajadhav5533
    @meenajadhav5533 3 года назад

    Awesome video as usual very informative 👌

  • @jlntgamezone4865
    @jlntgamezone4865 Год назад

    did you also use intelliJ for vuejs?

  • @basavarajwalikar1736
    @basavarajwalikar1736 Год назад

    even i declared @Builder annotation in entity class with import of Lombok, when i am calling builder method in main class its asking to create builder method in entity class

  • @erichivan5419
    @erichivan5419 3 года назад

    Fantastico ☕️

  • @rimuru2483
    @rimuru2483 Год назад

    it helped thanks

  • @mountinrose6722
    @mountinrose6722 2 года назад

    Thanks for the tutorial

  • @chandraprakash-sb1qn
    @chandraprakash-sb1qn 3 года назад

    Can you Please tell which design pattern is this?

  • @ahmetesto
    @ahmetesto 3 года назад

    Vue js + Spring boot Nearby Places and Google Places Api tutorial?

  • @MustafaKHAN-sw1xb
    @MustafaKHAN-sw1xb 3 года назад

    I appreciate your work. But sir now days react js much demanded and i also choose react js so if it is possible you should prepare video on react js and spring boot ecommerce project or any project

  • @williandiaz2815
    @williandiaz2815 2 года назад

    and employeeService?????

  • @DeepakGupta-hj2dv
    @DeepakGupta-hj2dv 3 года назад

    please microservices spring boot crash course bna do

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

    too old and no git with code so dont waste your time

  • @kiryls1207
    @kiryls1207 Год назад +2

    @ 52:15 your code worked fine after you annotated rest controller with @CorsOrigin("localhost:8081/"). but on my computer it did not, still got cors problem.
    (in another project i solved the issue with filter chain config and the annotation combined, otherwise nothing works)