我想删除 kie-server 的用户身份验证。web.xml
为此,我尝试从文件中删除下面提到的配置
<security-constraint>
<web-resource-collection>
<web-resource-name>REST web resources</web-resource-name>
<url-pattern>/services/rest/*</url-pattern>
<http-method>GET</http-method>
<http-method>PUT</http-method>
<http-method>POST</http-method>
<http-method>DELETE</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>kie-server</role-name>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
//from above config removed this portion
<auth-constraint>
<role-name>kie-server</role-name>
<role-name>user</role-name>
</auth-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>KIE Server</realm-name>
</login-config>
现在服务器正在启动但无法看到任务/声明/开始/完成任务
那么我应该在哪里修改配置,以便我可以在不登录的情况下使用 kie-server 服务器。并希望基于组执行操作。