Please advice me, my application is an old application it uses hibernate for its persistance just the jpa annotations.
My base dao extends HibernateDaoSupport and I save my entites using getSessionFactory().getCurrentSession().save(entity);
do I have to use JPA for jbpm persistance? is there any way we can provide custom DAO for jbpm ?
All jbpm tables will be in one database along with my application tables ,and I want jbpm to use my exsisting transaction manager, I dont want two phase comit using JTA transactions etc? Is this possible?
I am looking at jbpm for simple worklow stuff, define process definition and persist state in database along with my other tables using one transaction manger.
Also it would be great if I can add more columns to any of the jbpm tables and update the annotated entites? Please advice.