Open zam121118 opened 3 years ago
“系统依赖问题没法使用springboot 2.3.5+ 目前只能用2.0.0+版本” 这个只能自己单独引用了snakerFlow
在 2021-06-11 16:50:32,"amy" @.***> 写道:
系统依赖问题没法使用springboot 2.3.5+ 目前只能用2.0.0+版本;对应的使用snakerflow-spring-boot-starter 1.0.3版本,该版本存在问题
snakerEngineService.getEngine()
.query()
.getCCWorks(ccPage, new QueryFilter()
.setOperators(assignees)
.setState(1));
会报错Column 'creator' in field list is ambiguous Query 对应sql = select id,process_Id,order_State,priority,creator,cc.create_Time,end_Time,parent_Id,expire_Time,order_No,variable from wf_cc_order cc left join wf_hist_order o on cc.order_id = o.id where 1=1 and cc.actor_Id in(?,?) and cc.status = 1中creator没有指出具体的表导致问题
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.
“系统依赖问题没法使用springboot 2.3.5+ 目前只能用2.0.0+版本” 这个只能自己单独引用了snakerFlow 在 2021-06-11 16:50:32,"amy" @.***> 写道: 系统依赖问题没法使用springboot 2.3.5+ 目前只能用2.0.0+版本;对应的使用snakerflow-spring-boot-starter 1.0.3版本,该版本存在问题 snakerEngineService.getEngine() .query() .getCCWorks(ccPage, new QueryFilter() .setOperators(assignees) .setState(1)); 会报错Column 'creator' in field list is ambiguous Query 对应sql = select id,process_Id,order_State,priority,creator,cc.create_Time,end_Time,parent_Id,expire_Time,order_No,variable from wf_cc_order cc left join wf_hist_order o on cc.order_id = o.id where 1=1 and cc.actor_Id in(?,?) and cc.status = 1中creator没有指出具体的表导致问题 — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.
现在最简单的办法就是能不能修复下1.0.3版本的bug,AbstractDBAccess.java文件的sql中creator改为cc.creator,然后进行发布!
系统依赖问题没法使用springboot 2.3.5+ 目前只能用2.0.0+版本;对应的使用snakerflow-spring-boot-starter 1.0.3版本,该版本存在问题
会报错Column 'creator' in field list is ambiguous Query 对应sql = select id,process_Id,order_State,priority,creator,cc.create_Time,end_Time,parent_Id,expire_Time,order_No,variable
from wf_cc_order cc
left join wf_hist_order o on cc.order_id = o.id
where 1=1 and cc.actor_Id in(?,?) and cc.status = 1中creator没有指出具体的表导致问题