@PutMapping在我的SpringBoot项目中不起作用

jhiyze9q  于 2023-11-17  发布在  Spring
关注(0)|答案(1)|浏览(180)

我尝试在GetTodoController中实现TodoList编辑,但它不起作用。

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Create Todo</title>
  6. <link rel="stylesheet" th:href="@{/styles/todo/operation.css}">
  7. </head>
  8. <body>
  9. <h2>Edit your Todo!</h2>
  10. <form th:method="PUT" th:action="@{/todo/edit/{id}(id=${list.id})}" th:object="${list}">
  11. <label for="name">Name: </label>
  12. <input type="text" th:field="*{name}" id="name">
  13. <span style="color: #ba6a65" th:if="${#fields.hasErrors('name')}" th:errors="*{name}"></span>
  14. <br>
  15. <label for="description">Description: </label>
  16. <textarea th:field="*{description}" id="description">Enter text here...</textarea>
  17. <span style="color: #ba6a65" th:if="${#fields.hasErrors('description')}" th:errors="*{description}"></span>
  18. <br>
  19. <label for="deadline">Deadline: </label>
  20. <input type="datetime-local" th:field="*{deadline}" id="deadline">
  21. <span style="color: #ba6a65" th:if="${#fields.hasErrors('deadline')}" th:errors="*{description}"></span>
  22. <br>
  23. <input type="submit">
  24. </form>
  25. </body>
  26. </html>

个字符
我已经将@PutMapping更改为@PostMapping,将th:method=“PUT”更改为th:method=“POST”,一切都正常工作,但它在概念上是错误的,因为@PostMapping -添加新的,@PutMapping -更新

wwwo4jvm

wwwo4jvm1#

为了使PUTMap与Sping Boot 和Thymeleaf一起工作,您需要在application.properties中设置以下属性:

  1. spring.mvc.hiddenmethod.filter.enabled=true

字符串
这将启用隐藏方法过滤器,当与th:方法一起使用时,过滤器将允许正确处理PUT方法。

相关问题