网上几种方法
这里介绍简单的
上传文件那个HTML文件加入这两行
<meta name="_csrf" th:content="${_csrf.token}"/>
<meta name="_csrf_header" th:content="${_csrf.headerName}"/>
注意是th:content,因为用的是templates模板
还有这里也要注意:也要加th:
<form th:action="upload" th:method="post" enctype="multipart/form-data">
<button class="layui-btn" style="width: 205px;height: 38px;" >
<input type="file" name="myfile" style="height: 34px;line-height: 34px"/>
</button>
<button type="submit" class="layui-btn" id="test1">
<i class="layui-icon"></i>上传图片
</button>
</form>
更多信息可看这篇文章:
链接: https://stackoverflow.com/questions/21696592/disable-spring-security-for-options-http-method
.