Java MVC Example | Simple and Easy Java Tutorial

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

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

  • @Tina-l4u
    @Tina-l4u Год назад +23

    As a student currently learning MVC and Java, this has been the best explanation of not only what to do, but also why it is done. Thank you for this excellent tutorial!

  • @ericgraham23
    @ericgraham23 10 месяцев назад +3

    This tutorial is amazing, it really breaks the concept down in a way that is easy to understand. I was intimidated by MVC before and now I'm thinking about how to implement it in my own project. Thank you so much!!

  • @moses.muchemi
    @moses.muchemi Месяц назад

    finally i can learn to code again, be blessed brother

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

    Awesome work! Concise and richfull! Congrats!

  • @IDK-kv8ob
    @IDK-kv8ob 10 месяцев назад +1

    This was a great lesson. Thank you.

  • @sovietdolphin
    @sovietdolphin 7 месяцев назад

    Thank you. Very well explained!

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

    So well explained. Good tutorial.

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

    simply the best...

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

    thanks a lot from Brazil

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

    in the view if we call model.getName() , Why do we have to create a method in the controller that says "getName() return model.getName" ??? should not we be saying in the view controller.getName instead of model.getName

  • @nlt-g3v
    @nlt-g3v Год назад +2

    Wouldn't it be more practical to pass an object of the Student class as a parameter to printStudentDetails rather than the Student properties one by one? Imagine for example that the class Student had dozens of properties.

  • @ردينةدبدوب
    @ردينةدبدوب Год назад

    It's really helpful und awesome 👌

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

    can you share the code in a zip file in the comment section ?

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

    Done

  • @nlt-g3v
    @nlt-g3v Год назад

    Also, with this particular example, the necessity of such a pattern does not emerge. On the contrary, the feeling of redundancy is created. It looks like we want to go from New York to Washington via Los Angeles! For example, while we can call the method printStudentDetails directly, instead we take more steps to get the same result calling controller.updateView(). That is, we call the method printStudentDetails by proxy!!! Maybe the example is too simple to emerge such a necessity.