I'm now trying to use the new jbpm 7.9. I have a problem that my custom data object is not saved in my database. Below are my steps:
- Create a persistable data object
- Create a simple process which used the data object as a process variable
- Modify the project settings Persistence section.
- Change to a datasouce, mysql, already defined in the app server.
- Add the data object to "Project Persistable Data Objects"
- Change the dialect to org.hibernate.dialect.MySQL5InnoDBDialect
- Deploy to one kie server.
- Start a process instance either by UI or rest API. It completes successfully and I can see the variable is created correctly in the process manager UI.
But after I check the database, there's neither the table nor my record. Do I make something wrong?