0

我想删除 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 服务器。并希望基于组执行操作。

4

1 回答 1

1

你看,任务服务是 kie 中的一个独立模块。从这个意义上说,明智的做法是进行自动登录,然后追逐所有继承身份验证的地方。

于 2020-12-11T18:10:08.007 回答