I would like to call @RequestMapping(value = \"\", method = RequestMethod.DELETE) in spring from thymeleaf form.
@RequestMapping(value = \"\", method = RequestMethod.DELETE)
Is there any possibility to call delete or
You could use th:method for this:
th:method
This will generate a hidden input element, which will be picked up by Spring MVC: