I tried the new version Flowable (6.1.1) and found that Flowable-Admin UI app has a problem with Variables show. When I set custom Object with settings(strings…) as variable and I start the proces, then in Flowable-Admin UI app I do not see the variables (attached screen). Would you please look at it.
It’s possible to support additional variable-types with a custom JSON representation (either simple value or complex/nested JSON object). By extending the initializeVariableConverters() method on org.flowable.rest.service.api.RestResponseFactory, you can add additional org.flowable.rest.service.api.engine.variable.RestVariableConverter classes to support converting your POJO’s to a format suitable for transferring through REST and converting the REST-value back to your POJO. The actual transformation to JSON is done by Jackson.
Could you please guide me on a clean way to extend the initializeVariableConverters method on RestResponseFactory.
I was trying to produce a custom RestResponseFactory bean in my Spring Boot 2 application which depends on flowable-spring-boot-starter-process-rest maven artifact.
However it looks not easy as this component is produced by the ProcessEngineRestConfiguration class which is used/registered with the help of the BaseRestApiConfiguration#registerServlet method.