cancel
Showing results for 
Search instead for 
Did you mean: 

Activiti webapp explorer

ambikakhatri
Champ in-the-making
Champ in-the-making
Hi,

I downloaded activiti 5.19 source code. I see there is a module named activiti-webapp-explorer2. I want to borrow UI code from that or change some UI code and integrate authentication service to it. Can I make these changes to this module and use it in production for us?

Thanks in advance
Ambika
6 REPLIES 6

jbarrez
Star Contributor
Star Contributor
Sure. We don't support it, but you can do whatever you want with the code, it's open source.

ambikakhatri
Champ in-the-making
Champ in-the-making
Thank you for response.

katy1
Champ in-the-making
Champ in-the-making
Hello,
I'm about to use activiti for my final project study. I have a problem whencreating a new user, because every time I create a new user it's not recognized when restarting tomcat . Help me please

ambikakhatri
Champ in-the-making
Champ in-the-making
Are you creating user in database through sql query or activiti explorer webapp creates it for you? If you checkout engine.properties file, there is a property for creating demo users "create.demo.users". This property is by default set to true hence it creates/updates users every time you deploy this application.

Ambika

hari
Star Contributor
Star Contributor
Katy,
Activiti uses in memory H2 database out of the box. So every time you restart the tomcat, your changes will be lost.
You will have to configure a different database in order to avoid this. You can do it easily by changing the db.properties to point to a db of your choice(Oracle, Postgres, Mysql, DB2 ).
But when you do this, you will also have to create the schema for activiti to use in your new database. For this, run the scripts which come along with the activiti download which are available under database/create.

katy1
Champ in-the-making
Champ in-the-making
Thanks a lot for your answers,I'll try immediately