表单模板
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>测试</title>
</head>
<body>
<form action="http://localhost:8282/sign/space/member/list" method="get">
userId <input type="text" name="spaceId" ><br>
<input type="submit" value="提交">
</form>
</body>
</html>
put和delete请求
添加组件
@Bean
@ConditionalOnMissingBean({HiddenHttpMethodFilter.class})
//使用ConditionalOnProperty注解 只有spring.mvc.hiddenmethod.filter=true的时候这个组件才能被加载到容器当中
@ConditionalOnProperty(
prefix = "spring.mvc.hiddenmethod.filter",
name = {"enabled"},
matchIfMissing = true
)
public OrderedHiddenHttpMethodFilter hiddenHttpMethodFilter() {
return new OrderedHiddenHttpMethodFilter();
}
添加配置
spring.mvc.hiddenmethod.filter.enabled=true
spring.mvc.hiddenmethod.filter=true
表单中添加,要什么请求方式value就改什么
<input type="hidden" name="_method" value="put">
json请求
没找到,找到的几种都发不出请求。