首页 > 解决方案 > 如何在activiti-rest中解决startig stoppinf http客户端

问题描述

我使用activiti-rest 5.22和j2ee我的问题是我每次都连接到引擎以便能够在我对进程进行身份验证时实现列表进程等功能,例如我想在他显示的每个进程中列出进程列表我这个:

Infos: Starting the default HTTP client
Info: Stopping the default HTTP client
Infos: Starting the default HTTP client
Infos: Starting the default HTTP client

我的活动连接功能activiti:

 private static ClientResource getClientResource (String uri) {
       ClientResource resource = new ClientResource (uri);
       resource.setChallengeResponse (ChallengeScheme.HTTP_BASIC,
               "kermit", "kermit");


           return resource;
    }

标签: activiti

解决方案


这可能是一个日志级别配置,我建议你看一下文档:https ://www.activiti.org/5.x/userguide/#loggingConfiguration

配置应设置为无


推荐阅读