I would like to call @RequestMapping(value = \"\", method = RequestMethod.DELETE)
in spring from thymeleaf form.
Is there any possibility to call delete or
When we use th:method="PUT"
, thymeleaf creates hidden input as in the screenshot below. Then HiddenHttpMethodFilter converts posted method parameters into HTTP methods.
HiddenHttpMethodFilter disabled by default in Spring Boot 2.2.
You can enable this by adding spring.mvc.hiddenmethod.filter.enabled=true
to your application.properties file.