Use React and Spring Boot to Build a Simple CRUD App

Поділитися
Вставка

КОМЕНТАРІ • 19

  • @g00glen00b
    @g00glen00b Рік тому +9

    26:36 That Stack Overflow question sure looks familiar. (I'm the one who asked it.) 😆

  • @rudiney1h
    @rudiney1h Рік тому +4

    I would like to know a little more about your shortcuts/templates. It was nice and fast

  • @lucianoadrianflores2554
    @lucianoadrianflores2554 Рік тому

    I like your video but i'd like to know about these shortcuts you used. Or if you can tell me where you talked about it :)

  • @nicolaespinu5278
    @nicolaespinu5278 Рік тому

    Thank you!

  • @enamahmedshahaz
    @enamahmedshahaz Рік тому

    Please Let us know which Intelij IDEA theme are you using ? your IDE Looks so clean

    • @mraible
      @mraible Рік тому

      I'm using their New UI option under Appearance & Behavior in Settings.

  • @burakkilinc4422
    @burakkilinc4422 Рік тому

    Which plugin do you use for shortcuts?

    • @mraible
      @mraible Рік тому

      This is IntelliJ's Live Templates feature. You can find mine at github.com/mraible/idea-live-templates.

  • @MirwaisFaizi786
    @MirwaisFaizi786 Рік тому

    Hello Sir, I encountered a problem when trying to read the CSRF token from the header. When I console log the cookies, they appear as an empty object. I followed the same procedure that you applied in your code. Can you please help me with this?

    • @mraible
      @mraible Рік тому

      Are you still having an issue with this? If so, can you please post a comment on the blog post (in the description). It'll be easier to help you there.

    • @MirwaisFaizi786
      @MirwaisFaizi786 Рік тому +1

      Thank you so much, Sir, for your reply. The issue was solved.@@mraible

  • @mihirsawant8817
    @mihirsawant8817 Рік тому +1

    Why need Lombok when using Java 17 ?

    • @mraible
      @mraible Рік тому +1

      Because Records don't work with JPA.

    • @anubhavsingh2916
      @anubhavsingh2916 Рік тому

      To save your time from creating setter, getter and constructors

  • @24pratikbhagwat68
    @24pratikbhagwat68 Рік тому

    Hey man whats ur intell ij theme and plugins?

    • @enamahmedshahaz
      @enamahmedshahaz Рік тому

      Mee too. This theme looks so nice and clean

    • @mraible
      @mraible Рік тому

      I'm using their New UI option under Appearance & Behavior in Settings.

  • @zander3231
    @zander3231 Рік тому

    Cloned auth0 repo, getting the following error when saving new group:
    jakarta.persistence.EntityNotFoundException: Unable to find com.okta.developer.jugtours.model.User with id auth0|64428e904fdb346fecd7f713

    • @zander3231
      @zander3231 Рік тому

      Solved by adding this line to check if user exists;
      if (user.isEmpty()) {
      User newUser = new User(userId, details.get("name").toString(), details.get("email").toString());
      userRepository.save(newUser);
      }