标签: redhat-bpm
我正在使用jbpm 6.4.0及其其余api从商务中心进行任务查询
http://{{server}}:{{port}}//business-central/rest/task/query?status=inprogress&status=ready&potentialOwner={{owner}}
我总是收到1000个任务的TaskSummaryResponse的JAXB对象。如果我更改了分页,请添加:
http://{{server}}:{{port}}//business-central/rest/task/query?status=inprogress&status=ready&potentialOwner={{owner}}&s=2000&p=2
仍然保持相同的输出。
我有将近8k的任务,需要将它们导出到一个文件中才能使用。但是通过rest调用只能获得1000个任务。
这是JBPM问题吗? 有人对此有想法吗?