Build Your Webpage With Spring Boot and Thymeleaf in Less Than 20 Minutes

Поділитися
Вставка
  • Опубліковано 3 лип 2024
  • In this video you will find how to build a webpage with Spring Boot and Thymeleaf in less than 20 minutes. I will describe the main syntax of Thymeleaf to be able to build any server-side rendering webpage.
    This video is part of a playlist where I show how to create a Spring Boot Backend, how to create a website step by step: • Spring Boot
    I will show:
    * how to use variables in the templates;
    * how to iterate with for loops;
    * how do if-conditions work with Thymeleaf;
    * how to use and include Fragments;
    * how to display the webpage in different languages with the internationalization.
    My NEW eBook: sergiolema.dev/git-book/
    Blog: bit.ly/47ornJL
    LinkedIn: bit.ly/41Nn61q
    Facebook: bit.ly/47rc9nh
    My Desktop:
    • Laptop: Macbook Pro 16' 2019
    • Gaming Chair: amzn.to/47Vu6ed
    • Mouse: amzn.to/3HoBwM1
    • Desk: amzn.to/48Tc5Oi
    • Screen: amzn.to/48VZkCL
  • Наука та технологія

КОМЕНТАРІ • 24

  • @arnaudpoutieu1331
    @arnaudpoutieu1331 5 місяців тому

    Great content as always Sergio!!! Gratitudes for your contribution.

  • @carlosagu33
    @carlosagu33 5 місяців тому

    Excellent video Sergio!

  • @rohitsingh2k
    @rohitsingh2k 5 місяців тому +1

    Thanks very much sir,
    I have been following your content for some time and I really like the way to explain things/concepts.
    Great job🙌

  • @howfar2157
    @howfar2157 5 місяців тому

    Nice video. very comprehensive.

  • @conorocallaghan7574
    @conorocallaghan7574 2 місяці тому

    Well done , nice and simple and well explained

  • @KahyaHasan
    @KahyaHasan 5 місяців тому +1

    Good Job man

  • @sadiulhakim7814
    @sadiulhakim7814 День тому

    Hi jawman, I am preferring thymeleaf for my personal project over fromtend frameworks, because those frameworks are extra pain.

  • @rohitsingh2k
    @rohitsingh2k 5 місяців тому

    I would request you to please make a playlist for AWS tools,
    I have checked but found just 3 videos regarding deployments on AWS but yes they were quite explanatory.

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  5 місяців тому +1

      At the moment, I only have those videos: ua-cam.com/play/PLab_if3UBk99TlX80Xv0GTImsVqJF4gt1.html
      But I'm planning to create some more about AWS services.

  • @user-pq2rl5co8k
    @user-pq2rl5co8k 5 місяців тому +1

    Hey, can you give information about java certification exam OCJP about it's scope means it really become helpful nowadays to getting job.

  • @abdirahmanabdullahi5471
    @abdirahmanabdullahi5471 4 місяці тому

    How do you display currency in thymeleaf and speing boot? For example, if you have .
    What about this as well?
    Price:

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  4 місяці тому

      Do you mean displaying "39.50 $" (with the dollar sign)?
      Or do you mean displaying with decimals and two digits?

    • @abdirahmanabdullahi5471
      @abdirahmanabdullahi5471 4 місяці тому

      @@TheDevWorldbySergioLema as whole number. Like this £39. Thank you in advance

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  3 місяці тому

      This should be done with the internationalization.
      As some prices are displayed with $, others with £ and others with €.
      Some have the monetary information before, and other after. Some are displayed with command and other with dot.

  • @RanjanKumarRavi-ys3eu
    @RanjanKumarRavi-ys3eu 3 місяці тому

    you are returning string index at controller , how it's not returning string index instead it is returning index file?

    • @TheDevWorldbySergioLema
      @TheDevWorldbySergioLema  3 місяці тому +1

      Because the controller returns a view. With the annotation Controller, Spring Boot looks for a file named "index" (in this case) to return. Because the annotation Controller uses the MVC architecture (Model-View-Controller).
      If I use the annotation RestController, Spring Boot returns the text in JSON format.

    • @RanjanKumarRavi-ys3eu
      @RanjanKumarRavi-ys3eu 3 місяці тому

      Oo, thank you!