Aouassar Asmaealgostyle.hashnode.dev·Dec 1, 2024Testing en Spring Boot (MVC - Thymeleaf)Le testing est une étape cruciale du développement logiciel, et Spring Boot offre des outils puissants pour tester des applications basées sur l’architecture MVC. Dans ce qui suit, on va voir comment tester efficacement une application Spring Boot MV...DiscussSpringboot
Tanish Dwiveditanishspringboot.hashnode.dev·Oct 6, 2024Building Reusable Web Components in a Spring Boot Thymeleaf ProjectBy- Tanish Dwivedi LinkedIn - https://www.linkedin.com/in/tanish-dwivedi-java/ Twitter- https://x.com/tanish_dwivedii In today’s web development landscape, modular and reusable components are crucial for maintaining clean, scalable, and efficient app...Discuss·89 readsSpringboot
Nicolas Fränkelfrankel.hashnode.dev·Sep 19, 2024Server-Side Rendering with Spring BootUnderstanding the shared steps in the project setup is crucial before delving into the specifics of each client-augmenting technology. My requirements from the last post where quite straightforward: I'll assume the viewpoint of a backend developer ...DiscussWebjars
pushpakaliencodes.hashnode.dev·Aug 1, 2024Why @GetMapping doesn't work in Thymeleaf?I recently came across this issue while working with thymeleaf in spring boot.I defined an API like : @RestController @RequestMapping("/") public class HomeController { @GetMapping("/home") public String getHomePage() { return "home";...DiscussUnderstanding Spring.ioSpringboot
Thomas Surmannbootifyio.hashnode.dev·May 13, 2024Bind empty String as null in Spring BootWhen a form is submitted with an input field without any data, the browser submits it as an empty string "". That's why Spring Boot writes this to the data object exactly this way - with a StringTrimmerEditor configuration in place, we can bind the v...DiscussSpringboot
Thomas Schühlytschuehly.de·Nov 1, 2023Spring ViewComponent v0.7.0 releaseI'm excited to announce the release of Spring ViewComponent v0.7.0 today. You can grab the release from Maven Central by following the instructions at: https://github.com/tschuehly/spring-view-component#installation The two biggest changes to this re...Discuss·179 readsjte
Thomas Surmannbootifyio.hashnode.dev·May 2, 2023Best Practices for Thymeleaf and Spring BootThymeleaf is the most popular template language in Spring Boot. This article provides a set of best practices to put your own application on a solid foundation to be productive and happy in the long run. #1 Structure your templates Where exactly shou...DiscussSpringboot
salami adeniyi adedejidonneyo.hashnode.dev·Apr 26, 2023Fragment in ThymeleafWhat is Fragment In Thymeleaf Fragments in thyme leaf is a section set apart for reusable purposes in another HTML file. they are separated and reorganized into a single line of code to reuse in another HTML file. The whole idea behind fragments is t...Discuss·6 likes·32 readsThymeleaf