cancel
Showing results for 
Search instead for 
Did you mean: 

develop activiti with Spring and jsf

shaparak-smmira
Champ in-the-making
Champ in-the-making
hi to all
im beginner in activiti,and i need to develop external form in spring+jsf
i find book-cdi example  but i dont find example for spring+jsf and i have many errors in my implementation :?   :!: .
plz help me if you are work it with spring +jsf or have any idea ….
4 REPLIES 4

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
I work with jsf and activiti, but no spring. Jsf with cdi is a much better 'integration'.

But besides that, your question is so vague that it is impossible to help.

shaparak-smmira
Champ in-the-making
Champ in-the-making
Thanks ronald.van.kuijk

I Develop web application with jpa+spring3+jsf  and annotation base application ,and i want to use activiti engine in my  application ,

when develop book_order in my application ,get logic error errors ,
for example when use external forms for order and accept orders book, in new_order form fill ISBN field and submit form, when I login with kermit User and get task list ,i select task and go to  complete_order form but it dosent have data that I fill in new_order

when I use external form ,how get variable and set for forms?

krishna_v174
Champ in-the-making
Champ in-the-making
Hi All,

If any one has the sample application can you please share in this post .

coolstoneyoung
Champ in-the-making
Champ in-the-making
<code>

processEngineConfiguration = (ProcessEngineConfigurationImpl) ProcessEngineConfigurationImpl
         .createProcessEngineConfigurationFromResource("activiti.cfg.xml");


List<SessionFactory> customSessionFactories = new ArrayList<SessionFactory>();
SessionFactory sessionFactoryA = flowUserEntityManagerFactory;
customSessionFactories.add(sessionFactoryA);
SessionFactory sessionFactoryB = flowGroupEntityManagerFactory;
customSessionFactories.add(sessionFactoryB);
((ProcessEngineConfigurationImpl) processEngineConfiguration).setCustomSessionFactories(customSessionFactories);


processEngineConfiguration.setTransactionsExternallyManaged(true);
processEngineConfiguration.setProcessEngineName("default");
processEngine = processEngineConfiguration.buildProcessEngine();
</code>