Hi,
Thank you for answering !
here is what I have in org.activiti.explorer.conf.ActivitiEngineConfiguration
<code>
@Bean(name = { "processEngineConfiguration" })
public ProcessEngineConfigurationImpl processEngineConfiguration() {
SpringProcessEngineConfiguration processEngineConfiguration = new SpringProcessEngineConfiguration();
processEngineConfiguration.setDataSource(dataSource());
// processEngineConfiguration.setDatabaseSchemaUpdate(environment
// .getProperty("engine.schema.update", "false"));
processEngineConfiguration
.setTransactionManager(annotationDrivenTransactionManager());
processEngineConfiguration.setJobExecutorActivate(Boolean
.valueOf(
environment.getProperty("engine.activate.jobexecutor",
"false")).booleanValue());
processEngineConfiguration.setHistory(environment.getProperty(
"engine.history.level", "full"));
List<AbstractFormType> formTypes = new ArrayList<AbstractFormType>();
formTypes.add(new UserFormType());
formTypes.add(new ProcessDefinitionFormType());
formTypes.add(new MonthFormType());
formTypes.add(new GridFormType());
processEngineConfiguration.setCustomFormTypes(formTypes);
return processEngineConfiguration;
}
</code>
I've tried just now both versions
1)
<code>// processEngineConfiguration.setDatabaseSchemaUpdate(environment
// .getProperty("engine.schema.update", "false"));
</code>
2)
<code> processEngineConfiguration.setDatabaseSchemaUpdate(environment
.getProperty("engine.schema.update", "false"));
</code>
I can also see that in Processengineconfiguration the default is :
<code>protected String databaseShemaUpdate ="false"; </code>
For the development server I'm not working on that server right now if I'll hit the problem again I'll let you know !