如何解决activiti-rest中的startig stoppinf http客户端
how to resolve startig stoppinf http client in activiti-rest
我使用 activiti-rest 5.22 和 j2ee 我的问题是我每次都连接到引擎以便能够在我对流程进行身份验证时实现列表流程等功能,例如我想列出流程listre 每次他都给我看这个:
Infos: Starting the default HTTP client
Info: Stopping the default HTTP client
Infos: Starting the default HTTP client
Infos: Starting the default HTTP client
我的activity连接函数activiti:
private static ClientResource getClientResource (String uri) {
ClientResource resource = new ClientResource (uri);
resource.setChallengeResponse (ChallengeScheme.HTTP_BASIC,
"kermit", "kermit");
return resource;
}
这大概是日志级别的配置,我建议你看看文档:https://www.activiti.org/5.x/userguide/#loggingConfiguration
配置应设置为none
我使用 activiti-rest 5.22 和 j2ee 我的问题是我每次都连接到引擎以便能够在我对流程进行身份验证时实现列表流程等功能,例如我想列出流程listre 每次他都给我看这个:
Infos: Starting the default HTTP client
Info: Stopping the default HTTP client
Infos: Starting the default HTTP client
Infos: Starting the default HTTP client
我的activity连接函数activiti:
private static ClientResource getClientResource (String uri) {
ClientResource resource = new ClientResource (uri);
resource.setChallengeResponse (ChallengeScheme.HTTP_BASIC,
"kermit", "kermit");
return resource;
}
这大概是日志级别的配置,我建议你看看文档:https://www.activiti.org/5.x/userguide/#loggingConfiguration
配置应设置为none