1 Reply Latest reply on Jun 28, 2005 9:28 AM by javabr

    delay-updates-until-end-of-tx (BEA) and sync-on-commit-only

    pchandra

      I have 49 entity EJBs all having in their respective *-weblogic-ejb-jar.xml file the attribute:

      delay-updates-until-end-of-tx
      set as in
      <delay-updates-until-end-of-tx>false</delay-updates-until-end-of-tx>

      It looks like in JBoss 4.0.1 the equivalent is the attribute sync-on-commit-only
      I find in the "Standard CMP EntityBean" configuration of standardjboss.xml:
      ---------
      <container-configuration>
      <container-name>Standard BMP EntityBean</container-name>
      <call-logging>false</call-logging>
      <invoker-proxy-binding-name>entity-rmi-invoker</invoker-proxy-binding-name>
      <sync-on-commit-only>false</sync-on-commit-only>
      <insert-after-ejb-post-create>false</insert-after-ejb-post-create>
      ....
      -------------------

      Am I right?