Create a FULLSTACK APP with Java+Spring-Boot+Thymeleaf+HTMX | NO Javascript | Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

ความคิดเห็น • 29

  • @guccigreatness4925
    @guccigreatness4925 10 หลายเดือนก่อน +5

    This is the best htmx, thymeleaf tutorial I have seen. Please keep creating more!😅

    • @programmingwithmati
      @programmingwithmati  10 หลายเดือนก่อน

      Thanks for the feedback! I'm glad it was helpful!

  • @rustinpeace7466
    @rustinpeace7466 หลายเดือนก่อน

    Didnt understand the HATEOS principle of returning a reference until this video. Thanks for that!

  • @arnaudpoutieu1331
    @arnaudpoutieu1331 ปีที่แล้ว +4

    Thank you Mati for this insightful record. I have to admit that HTMX is a serious tool on which we backend guys should really consider diving into to fill the UI gap we sometimes face

    • @programmingwithmati
      @programmingwithmati  ปีที่แล้ว +2

      I’m glad this was helpful!
      Definitely, we need to pay close attention to it and its development!
      Thanks for the comment!

  • @prezes617
    @prezes617 9 หลายเดือนก่อน +2

    Thanks Mati for your video, it helped me a lot in my project. I did not have to spend hours to learn Javascript and React to make a simple UI, cheers :)

    • @programmingwithmati
      @programmingwithmati  9 หลายเดือนก่อน

      I’m so glad this was helpful! You are welcome!

  • @swipped99
    @swipped99 6 หลายเดือนก่อน

    Geep going mate, great tutorial. Hope to see more on those topics soon. Cheers!

  • @jimnelson305
    @jimnelson305 11 หลายเดือนก่อน +3

    Thank you very much Mati for sharing this demonstration of how HTMX with Thymeleaf can be used with Spring Boot. I plan to start testing this further myself. I'm curious to see how effectively different elements of the web page can be "componentized" and reused, such as to compare with the ease of JSX components in React. For instance, in your example, after you copied the statuses list generation html from the feed.html into the statuses.html, I hoped to see if the duplication could be removed by having the feed.html now somehow use the fragment from the statuses.html. Again, I'll now explore further. Thanks for providing a starting point!

    • @programmingwithmati
      @programmingwithmati  11 หลายเดือนก่อน +2

      Thanks for the great comment!
      The reason I duplicated the code is because I didn’t do the extra work of creating a Thymeleaf component, but that is indeed possible.

  • @harleyseixas8708
    @harleyseixas8708 11 หลายเดือนก่อน

    Very easy, excellent content. Thank you Mati.

  • @COD_MW007
    @COD_MW007 2 หลายเดือนก่อน

    Sir, can you create a playlist for springboot thymeleaf htmx so that we can learn how this technology works together.

  • @manuonda
    @manuonda 7 หลายเดือนก่อน

    Hello Mati, thanks for the video! Queria consultarte si htmx ganara terreno en cuanto a los otros frameworks angular , react? Y tambien en cuanto a IA si publicaras algunos videos.

    • @programmingwithmati
      @programmingwithmati  6 หลายเดือนก่อน

      Hola! HTMX está ganando terreno entre los desarrolladores de backend (Java, Python, Go).
      Es una buena alternativa para evitar usar JavaScript en el frontend. Pero no va a alcanzar a tener la popularidad de React o Angular. Le falta mucho para poder “reemplazarlos”.

    • @manuonda
      @manuonda 6 หลายเดือนก่อน

      ​@@programmingwithmatigracias por responder Mati. Espero en los próximos años se vea una evolución..

  • @MilsonDev
    @MilsonDev 11 หลายเดือนก่อน +1

    I'm also backend dev who hate js, I'll try it tomorrwow jahahha

  • @user-dg8ys
    @user-dg8ys 11 หลายเดือนก่อน

    what happened to spınner gif? Why didnt it work?

  •  11 หลายเดือนก่อน +1

    nice, but should use a Thymeleaf fragment instead of copying all that HTML :)

    • @programmingwithmati
      @programmingwithmati  11 หลายเดือนก่อน +1

      Thanks for the advice! I’m not an expert in Thymeleaf, but I’ll be learning more about it soon!

  • @naranyala_dev
    @naranyala_dev 11 หลายเดือนก่อน +1

    htmx and picocss

  • @phamcongtoan1399
    @phamcongtoan1399 ปีที่แล้ว +1

    can you guide me to make a complete springboot project with html css JavaScript?❤

    • @programmingwithmati
      @programmingwithmati  ปีที่แล้ว +3

      I’m preparing more spring boot tutorials for the future.

    • @phamcongtoan1399
      @phamcongtoan1399 ปีที่แล้ว

      @@programmingwithmati I will subscribe you to learn more about springboot:))

    • @AzidHouse
      @AzidHouse ปีที่แล้ว

      Not to mention that server side html serving is more secure. That way the backend is authoritative as every request goes under authorization check and will be served only with the bare minimum viewable data.

  • @ismaelE77
    @ismaelE77 9 หลายเดือนก่อน

    Thanks man very good tutorial
    This is an easy way to hack the frontend world, react developers beware, we are coming 😂

  • @hamedghafouri5451
    @hamedghafouri5451 7 หลายเดือนก่อน

    great❤❤❤❤

  • @fulconandroadcone9488
    @fulconandroadcone9488 9 หลายเดือนก่อน

    I'm front end who hates and loves JS, depending on how much hair is left on my head.

  • @tjholmes66
    @tjholmes66 6 หลายเดือนก่อน

    Ok, this is very concerning for me as someone who has been doing Java/Spring back-end for 20 years, and creatng RESTful API's in the traditional way with JSON. I like the Tutorial, but this is an OLD MONOLITH. I know 'monolith' is now an over-loaded term because of Microservices. But, in the sense 'OLD MONOLITH' means you have created an application with both front-end AND back-end in ONE JAR file. We got away from this years ago, and had 'separation of concerns' which this NOW violates.
    I'm more interested in seeing a already done RESTful API on the back-end, one that has API's for JSON an one that has API's for HTML. Then create a SEPARATE front-end, that can call the RESTful UI API's that return the HTML snippets. This would probably ne a nice real-world tutorial. Thanks for the tutorial, it is helpful, but doesn't quite fit what I am looking for.

    • @programmingwithmati
      @programmingwithmati  6 หลายเดือนก่อน +2

      Hi! I appreciate your thoughts.
      The intention of this is not to create a monolithic app. This tutorial shows how you can create a front-end application without using JavaScript.
      How you structure your architecture is up to you.
      You can have it as monolith, or you can have multiple microservices that serve JSON, and some services will be in charge of serving the UI. The point of this tutorial is to show that a front-end can be written with HTML without using JavaScript.
      In the tutorial I’m hardcoding the list of posts that are being printed, but those can come from, and most likely will in a real scenario, a REST API in a different service or even a third party company.
      I hope this comment clarifies it.
      Thanks for your comment!