如何更改 Camunda 数据库以接受长字符串变量?

Posted

技术标签:

【中文标题】如何更改 Camunda 数据库以接受长字符串变量?【英文标题】:How to ALTER Camunda database to accept long string variables? 【发布时间】:2018-11-25 20:45:17 【问题描述】:

我在通过 Camunda 引擎传递长字符串变量(长度超过 4000 个字符)时遇到问题。

有没有办法改变 camunda 数据库来避免这个异常,或者禁用默认的长字符串限制?

【问题讨论】:

【参考方案1】:
import org.camunda.bpm.engine.variable.Variables;
import org.camunda.bpm.engine.variable.Variables.SerializationDataFormats;

variableMap.put("Authorization", Variables
                              .objectValue(authorization)
                                  // tells the engine to use java serialization for persisting the value 
                              .serializationDataFormat(SerializationDataFormats.JAVA)  
                              .create());

【讨论】:

那么,你用那个序列化,但是你如何用 variables.get() 检索值呢?

以上是关于如何更改 Camunda 数据库以接受长字符串变量?的主要内容,如果未能解决你的问题,请参考以下文章

camunda开源流程引擎的数据库表结构介绍

更改日期格式

开源流程引擎Camunda BPM如何扩展数据库表

第六篇Camunda系列-流程变量

如何键入 Typescript 数组以仅接受一组特定的值?

第六篇Camunda系列-流程变量