cancel
Showing results for 
Search instead for 
Did you mean: 

How to run Activiti on SAP HANA

aniket
Champ in-the-making
Champ in-the-making
We need to run Activiti on top of SAP HANA database for our project requirement. We are able to create all Activiti tables on SAP HANA but we are unable to connect it. We have configure it as follows

<beans:bean id="activitidataSource" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">
        <beansSmiley Tongueroperty name="driverClass" value="com.sap.db.jdbc.Driver" />
        <beansSmiley Tongueroperty name="url" value="jdbc:sap://**.*.***.**:*****" />
         <beansSmiley Tongueroperty name="username" value="******" />
         <beansSmiley Tongueroperty name="password" value="*******" />
</beans:bean>
<beans:bean id="transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <beansSmiley Tongueroperty name="dataSource" ref="activitidataSource" />
    </beans:bean>

<beans:bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
        <beansSmiley Tongueroperty name="databaseType" value="HDB" />
        <beansSmiley Tongueroperty name="dataSource" ref="activitidataSource" />
        <beansSmiley Tongueroperty name="transactionManager" ref="transactionManager" />
        <beansSmiley Tongueroperty name="databaseSchemaUpdate" value="true" />
        <beansSmiley Tongueroperty name="deploymentResources" value="classpath*:diagrams/SpringIntegrationDia.bpmn" />
        <beansSmiley Tongueroperty name="history" value="audit" />
        <beansSmiley Tongueroperty name="jobExecutorActivate" value="false" />
    </beans:bean>

We are using latest version of Activiti 5.19.0.2. If anyone has integrated Activiti with SAP HANA please help.

Thanks,
Aniket
1 REPLY 1

jbarrez
Star Contributor
Star Contributor