Reputation: 199
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:
But after I check the database, there's neither the table nor my record.
Do I make something wrong?
Upvotes: 0
Views: 1558
Reputation: 199
Well, I find the answer by myself.
I need to define additional marshalling strategy
<marshalling-strategy>
<resolver>mvel</resolver>
<identifier>new org.drools.persistence.jpa.marshaller.JPAPlaceholderResolverStrategy("com.myteam:xerox:1.0.0", classLoader)</identifier>
<parameters/>
</marshalling-strategy>
This is not mentioned in the document anywhere. :(
Upvotes: 2