0 Replies Latest reply on Mar 19, 2004 3:55 PM by aloubyansky

    call-ejb-store-on-clean

    aloubyansky

      A new *optional* element call-ejb-store-on-clean is added to jboss.xml in 4.0.0DR4. It can contain true or false.

      true means that ejbStore will be called at synchronization time on each instance associated with the current transaction even if the instance is not dirty.

      false (the default) means that ejbStore will be called at synchronization time only on dirty instances.

      An example of a container that calls ejbStore on all instances:

       <container-configuration extends="Standard CMP 2.x EntityBean">
       <container-name>custom container</container-name>
       <call-ejb-store-on-clean>true</call-ejb-store-on-clean>
       </container-configuration>