The following article contains a list of FAQs about Activiti BPMN engine that will guide you through some of most common development challenges.
How to disable updates for a field of an Entity EJB?
If you need to select which columns need update when executing a CMP statement you can use the “updatable” attribute on the @Column annotation. Setting “updatable” = false will assume that the column is not always included in the SQL update statement. Here is an example: import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import … Read more