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";...
aliencodes.hashnode.dev1 min read