此 URL 不支持 HTTP 方法 POST 对于 url 在 wildfly 中以 .html 结尾的文件

HTTP method POST is not supported by this URL for url ending with .html file in wildfly

我正在为我的应用程序的登录功能集成 azure ad。身份验证成功后,azure 将 return 访问令牌指向提到的重定向 URL。问题是我在重定向时得到 "HTTP method POST is not supported by this URL"。

这就是重定向 URL 的样子。

https://bbb-dev-ext.abcde.com/myapp.dashboard/azureLogin.html?

我们用于我的应用程序的网络服务器是 wildfly 11

尝试在我的 web.xml 中添加以下内容,但仍然无效

<security-constraint>    
  <display-name>Example Security Constraint</display-name>    
  <web-resource-collection>    
     <web-resource-name>Protected Area</web-resource-name>    
     <url-pattern>/azureLogin.html*</url-pattern>   
     <http-method>GET</http-method>    
  </web-resource-collection>
</security-constraint>

是否有任何其他方法可以将我的请求 http 方法类型从 POST 更改为 GET ?或者有什么方法可以在 wildfly 应用程序中允许 HTTP 方法类型 POST?

我在将 html 转换为 jsp 文件后使其工作。看起来有些 Jboss 在处理对 html 页面的 POST 请求时。