Why @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";...
Aug 1, 20241 min read42

