Flowable Form rendering issue with spring boot

Hi Team,

i am trying to integrating flowable form in spring boot but not able to render the form in UI after the application boots up, please help me out to resolve this issue.

Hello,

Would you mind elaborating a bit more your problem? What is the error, if any, on the stacktrace? How are you doing the aforementioned integration? etc. Please understand that the more clear details we have, the better anyone would be able to help.

Thanks

Hello @inakihn,

i am using spring boot and as for depandency using only

BPMN File is like this :

and trying to start with
runtimeService.startProcessInstanceByKey(“SampleModel2”);

Form look like this:

{
“name”: “UserForm”,
“key”: “user-form”,
“version”: 0,
“fields”: [
{
“fieldType”: “FormField”,
“id”: “userinput”,
“name”: “UserInput”,
“type”: “text”,
“value”: null,
“required”: false,
“readOnly”: false,
“overrideId”: false,
“placeholder”: null,
“layout”: null
},
{
“fieldType”: “FormField”,
“id”: “fileupload”,
“name”: “FileUpload”,
“type”: “upload”,
“value”: null,
“required”: false,
“readOnly”: false,
“overrideId”: false,
“placeholder”: null,
“layout”: null
},
{
“fieldType”: “FormField”,
“id”: “modelinput”,
“name”: “ModelInput”,
“type”: “text”,
“value”: null,
“required”: false,
“readOnly”: false,
“overrideId”: false,
“placeholder”: null,
“layout”: null
}
],
“outcomes”: []
}

Thanks @inakihn for replying

What about the error? Care to share?

Sorry But i am not getting any error @inakihn

@Subhrai are you creating your own Spring Boot application?

What kind of UI are you looking for?

If you are looking something like the flowable-task application, then you can only get that with that application. The flowable-spring-boot support does not provide UI capabilities.

Hi @filiphr,

yes i am looking for same kind of UI where i can provide input and based on that input next task will start flowing.
i am beginner with flowable my gole to take input from user and i found form and i thought this form will also work as normal form.
please guide me if i am going on wrong path.

Thanks for replying @filiphr

HI @filiphr

i am flowing yours github project link as well you are using form so can you please give a hint of use case

link - https://github.com/flowable/flowable-examples/tree/master/spring-boot-example/src/main/resources/forms

Thanks

Hey @Subhrai,

If you are creating your own Spring Boot application you won’t have an UI where you can complete the tasks with the form. If you want to have an UI you would need to use the flowable-task.war.

By creating your own Spring Boot application you can use the REST API only.

Cheers,
Filip