Activiti 6 error creating bean processEngine databaseId must be declared for element type sql

cancel
Showing results for 
Search instead for 
Did you mean: 
llewandox23
Member II

Activiti 6 error creating bean processEngine databaseId must be declared for element type sql

Everything worked in Activiti 5.20, now cannot load ApplicationContext

Caused by: org.activiti.engine.ActivitiException: Error while building ibatis SqlSessionFactory: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException; lineNumber: 37; columnNumber: 55; Attribute "databaseId" must be declared for element type "sql".

Standard config

  <bean id="dataSourceWorklowTest" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">

<property name="driverClass" value="org.h2.Driver"/>

<property name="url" value="jdbc:h2:mem:activiti;DB_CLOSE_DELAY=1000"/>

<property name="username" value="sa"/>

<property name="password" value=""/>

</bean>

<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">

<property name="dataSource" ref="dataSourceWorklowTest" />

<property name="transactionManager" ref="transactionManagerWorkflowTest" />

<property name="databaseSchemaUpdate" value="true" />

<property name="asyncExecutorActivate" value="false" />

<property name="history" value="none" />

</bean>

....

1 Reply
krolikzaia
Active Member

Re: Activiti 6 error creating bean processEngine databaseId must be declared for element type sql

I replace mybatis-3.4.6.jar

on

mybatis-3.3.0.jar

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<!-- Configuration -->
<contextSmiley Tongueroperty-placeholder location="classpath*:*.properties" />

<!-- Annotation based configuration -->
<context:annotation-config />
<context:component-scan base-package="t1.t1" />


<!-- Data -->
<bean id="dataSource"
class="org.apache.commons.dbcp2.BasicDataSource">

<property name="driverClassName" value="org.postgresql.Driver" />
<property name="url" value="jdbcSmiley Tongueostgresql://localhost:5432/activiti6ui2" />
<property name="username" value="postgres" />
<property name="password" value="" />

</bean>

<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>

<tx:annotation-driven transaction-manager="transactionManager"/>


<!--
Activiti
-->


<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">

<property name="databaseType" value="postgres" />

<property name="dataSource" ref="dataSource" />

<property name="transactionManager" ref="transactionManager" />

<property name="databaseSchemaUpdate" value="true" />

<property name="deploymentResources" value="classpath*:/process/*.bpmn20.xml" />
</bean>

<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
<property name="processEngineConfiguration" ref="processEngineConfiguration" />

</bean>

<bean id="repositoryService" factory-bean="processEngine"
factory-method="getRepositoryService" />
<bean id="runtimeService" factory-bean="processEngine"
factory-method="getRuntimeService" />
<bean id="taskService" factory-bean="processEngine"
factory-method="getTaskService" />
<bean id="historyService" factory-bean="processEngine"
factory-method="getHistoryService" />
<bean id="managementService" factory-bean="processEngine"
factory-method="getManagementService" />
</beans>