Version 6.2.1
Hello, the problem is using temporary variables, is that when you restart the tomcat service fails all cases.
How I can solve this problem? Is it a bug?
thanks.
Version 6.2.1
Hello, the problem is using temporary variables, is that when you restart the tomcat service fails all cases.
How I can solve this problem? Is it a bug?
thanks.
Transient variables are not kept in persistent storage, so they are lost on shitdown. if you need data to survive a restart, it needs to be in the database, so don't use a transient variable.
Generally, we advise that you use a transient variable for data that has no meaning outside a process case, or for storing a temporary copy of business data that is stored elsewhere.
Chris
Hello, could you please edit your question and add information about Bonita version, your environment, and what kind of process are you trying to do to have this issue ?