我将以一种操作状态将我的实体 ID 保存到会话中:
<on-exit>
<evaluate expression="persistantService.saveOrUpdate(flowScope.entity)"/>
<evaluate expression="externalContext.sessionMap.put('entityId', flowScope.entity.Id)"/>
</on-exit>
实际上,entity.Id 字段 - 是 int。
在流程开始时,我试图从会话中获取 entityId,如果存在,则从存储中加载它,否则 - 创建新的。这里我想怎么做:
<decision-state id="test">
<if test="externalContext.sessionMap.contains('entityId')"
then="findExistingEntity"
else="creteNewEntity"/>
</decision-state>
<action-state id="findExistingEntity">
<evaluate expression="persistantService.findEntityById(externalContext.sessionMap.entityId)"
result="flowScope.entity" />
</action-state>
问题是persistantService.findEntityById 接受int,但不接受从会话中获取的Object 或Integer。我该如何解决?如何将 externalContext.sessionMap.entityId 转换为 int?或者可能还有另一种方法来测试该实体是否已保存并从持久存储中加载它?