- 浏览: 25176 次
- 性别:
- 来自: 上海
最新评论
-
aizhimin:
tor 写道你好 想问下你 在每个任务动态分配人员你是咋实现的 ...
JBPM4 在任务的assign事件中获得当前任务ID -
tor:
你好 想问下你 在每个任务动态分配人员你是咋实现的? 如有时间 ...
JBPM4 在任务的assign事件中获得当前任务ID
文章列表
我的需求是:在任务生成时,将该任务同步到另一个系统中,供它登录本任务的办理页面。所以我需要在任务创建时自动获得该任务的ID。
问题:
executionImpl.getTask() 这个方法无法取得刚创建的任务。
解决办法:
被我发现了,
String dbid = executionImpl.getHistoryActivityInstanceDbid() 这样可以获得历史活动的ID。
再观察jbpm4_hist_actinst 表,有一个HTASK_字段,其实就是任务的ID。仔细观察发现HTASK_ 就是 DBID_ 减1。
所以,要想在assign事件中获得任务ID可以 ...
转载:
http://blog.csdn.net/li_guotao/archive/2011/02/20/6196800.aspx
先贴出相关的协议:
content://sms/inbox 收件箱
content://sms/sent 已发送
content://sms/draft 草稿
content://sms/outbox 发件箱
content://sms/failed 发送失败
content://sms/queued 待发送列表
在模拟器上Outbox没有查询到数据, ...
已经打包好的源码:
http://www.devfrustrated.com/devBlog/browsing-android-source-code-in-eclipse/
通过git工具下载:
http://www.cnmsdn.com/html/201101/1296289262ID9355.html
流程定义文件:
<?xml version="1.0" encoding="UTF-8"?>
<process name="VacationRequest" xmlns="http://jbpm.org/4.4/jpdl">
<start form="org/jbpm/examples/taskform/request_vacation.ftl" g="16,56,48,48" name="start">
...
List<HistoryProcessInstance> hpiList = historyService.createHistoryProcessInstanceQuery()
.processDefinitionId(processDefinitionId).ended().orderAsc(HistoryProcessInstanceQuery.PROPERTY_STARTTIME).list();
以上这句代码在查询时会报如下的错:
unexpected token: by near line 1, column 178 [select hpi from o ...
<script type="text/javascript">
//Iframe自适应高度
function iFrameHeight(iframepage) {
var ifm= document.getElementById(iframepage);
var subWeb = document.frames ? document.frames[iframepage].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
va ...
问题源于这样一个异常:
Could not synchronize database state with session
org.hibernate.exception.SQLGrammarException: Could not execute JDBC batch update
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:90)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelpe ...
var deptUserData = [];
<s:if test="deptUserData!=null">
deptUserData=<s:property value="deptUserData"/>;
</s:if>
//参与者树
var tree = new Ext.tree.TreePanel({
id: 'tree',
onlyLeafCheckable: true,// 只对叶子节点可选
animate: false, // 动画效果
...
1、下载SDK set up 工具 :android-sdk_r08-windows.zip
推荐一个中文论坛:http://www.android123.com.cn/
2、设置环境变量:
Android_SDK_HOME
D:\android-sdk-windows\platform-tools
3、下载最新的eclipse插件:ADT Plugin 8.0.0