Spring Boot 2.2.0 版本中使用 hiddenmethod 过滤器的问题

在看视频学习 Spring Boot 过程中,在实现 restful 的更新操作时,需要将表单数据以 PUT 方法提交。

按照视频中操作,直接在表单中添加

语句后,再次提交时,依然是使用 POST 方法。

原因是在 Spring Boot 的 META-INF/spring-configuration-metadata.json 配置文件中,

Spring Boot 2.2.0 版本中使用 hiddenmethod 过滤器的问题_第1张图片

默认是关闭 Spring 的 hiddenmethod 过滤器的,

    {
      "name": "spring.mvc.hiddenmethod.filter.enabled",
      "type": "java.lang.Boolean",
      "description": "Whether to enable Spring's HiddenHttpMethodFilter.",
      "defaultValue": false
    },

所以直接在表单提交的数据中添加 "_method" 数据并不起作用。

解决办法就是在 Spring Boot 的配置文件 application.properties 中将 hiddenmethod 过滤器设置为启用即可。

# 启用hiddenMethod过滤器
spring.mvc.hiddenmethod.filter.enabled=true

 

你可能感兴趣的:(Spring Boot 2.2.0 版本中使用 hiddenmethod 过滤器的问题)