Spring Boot For Beginners - Query Methods

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

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

  • @lucasfigueiredo8145
    @lucasfigueiredo8145 7 месяцев назад +2

    Man this channel is a blessing, you single handedly restored my will to learn programing thank you

  • @kennethisaac233
    @kennethisaac233 Год назад +7

    Some new files where created, so create the following like you did for Pokemon. It's easy;
    - ReviewDto class
    - ReviewRepository interface
    - ReviewService interface
    - ReviewServiceImpl class
    -- add reviewRepository object
    -- generate a constructor
    -- add mappers (mapToDto and mapToEntity)

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

      - ReviewController class
      ** ReviewDto class doesn't have a Pokemon object

  • @beryalex1798
    @beryalex1798 Год назад +6

    i thought it only me after pagination there is video that is missing. but any way Thanks Teddy

  • @Kamilek96
    @Kamilek96 Год назад +7

    Is the playlist incomplete? Or writing some code off-camera was planned? I mean whole implementation of reviews is missing. Greetings from europe =)

    • @TeddySmithDev
      @TeddySmithDev  Год назад +3

      I might add to it. What implementation would you like to see?

    • @Kamilek96
      @Kamilek96 Год назад +5

      No.. it's fine. I was confused when I saw a few new files and because you didn't mention about them I thought that there can be some missing video :)
      I just did it myself- was easier than I thought =)
      Thanks for your effort =) Your tutorials are by far the most engaging tutorials that I found =)

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

      Yeah, it looks like a video is missing.

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

    Hello, I have question. Why you use autowired in constructor injection? like I know it is used to be in field injection and got deprecated but in constructor it is other thing. I couldn't get right answer.

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

      It used to be that in order for Spring to "find" the object and you had to have it. Now everything is done automatically. Some people still leave it and it's still good to be familiar with since Java codebases can be 20 years old. Thanks for comment!

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

      @@TeddySmithDev wow nice answer got it, thanks for the video btw. Normally I don't like videos of programming. But yours is really clear and concise and understandable. Thank you very much! Going forward into jwt because it was hard for me I guess I will understand it after your video!