going to show the history of finished processInstans, but how to get the forms? "createHistoricDetailQuery().formProperties()" get the form values ,but don‘t have the name of inputs.
Hi, have a look in the org.activiti.engine.impl.cmd.SubmitTaskFormCmd class. This class is used when you submit some form data for a speciffic task. (see also org.activiti.engine.test.api.form.FormServiceTest / testSubmitTaskFormData())
The engine will take these submitted values and will just save these values. The form management is your application's responsibility.
So if you have to know what is the full list of fields (submitted or not) you have to consult the structure of the form used to create this task submit.