Transaction roll backed in mule










1















I am new to Mule.



I have implemented below flow in my application's mule_poc.xml.



I have used mule+spring+hibernate+maven.



<flow name="Flow1" processingStrategy="allow01Threads30Wait">

<vm:inbound-endpoint path="flow1"/> //This call is coming from a different location in the same file

<expression-component>
Thread.sleep(90000);
</expression-component>
<component>
<spring-object bean="processDataBean" />
</component>

<collection-splitter />

<vm:outbound-endpoint path="myoutBoundFlow" exchange-pattern="request-response">
<custom-transaction action="ALWAYS_BEGIN"
factory-class="com.practice.CompositeTransactionFactory" />
</vm:outbound-endpoint>
<default-exception-strategy>

<processor-chain>

<transactional action="ALWAYS_BEGIN" doc:name="Transactional">
<logger message="Calling ExceptionReplayProcess component..." level="INFO"/>
<component><spring-object bean="saveExceptionDataInDatabase" /></component>
</transactional>
<choice>
<when
expression="message.payload !=null &amp; message.payload instanceof org.mule.message.ExceptionMessage"
evaluator="groovy">

</when>
</choice>
<outbound-endpoint address="vm://flow-error-handler" exchange-pattern="request-response">
<custom-transaction action="ALWAYS_BEGIN" factory-class="com.practice.CompositeTransactionFactory" />
</outbound-endpoint>
</processor-chain>
</default-exception-strategy>
</flow>


Problem statement:
When any exception occures or clode block fails in processDataBean (Its an entire mvc call) that particular data throws to .



Here in transaction block have declared saveExceptionDataInDatabase implementation whcih captures the payload from the failing message and then i save this payload along with other business data in database.



But mule is not able to save this data in table .



I noticed that it makes database call (data insertion)using hibernate but i am not able to find this record in database.



I am guessing that this is happening because transaction have not been committed.



Could you please help me solve this as this has taken lot much of my time.










share|improve this question




























    1















    I am new to Mule.



    I have implemented below flow in my application's mule_poc.xml.



    I have used mule+spring+hibernate+maven.



    <flow name="Flow1" processingStrategy="allow01Threads30Wait">

    <vm:inbound-endpoint path="flow1"/> //This call is coming from a different location in the same file

    <expression-component>
    Thread.sleep(90000);
    </expression-component>
    <component>
    <spring-object bean="processDataBean" />
    </component>

    <collection-splitter />

    <vm:outbound-endpoint path="myoutBoundFlow" exchange-pattern="request-response">
    <custom-transaction action="ALWAYS_BEGIN"
    factory-class="com.practice.CompositeTransactionFactory" />
    </vm:outbound-endpoint>
    <default-exception-strategy>

    <processor-chain>

    <transactional action="ALWAYS_BEGIN" doc:name="Transactional">
    <logger message="Calling ExceptionReplayProcess component..." level="INFO"/>
    <component><spring-object bean="saveExceptionDataInDatabase" /></component>
    </transactional>
    <choice>
    <when
    expression="message.payload !=null &amp; message.payload instanceof org.mule.message.ExceptionMessage"
    evaluator="groovy">

    </when>
    </choice>
    <outbound-endpoint address="vm://flow-error-handler" exchange-pattern="request-response">
    <custom-transaction action="ALWAYS_BEGIN" factory-class="com.practice.CompositeTransactionFactory" />
    </outbound-endpoint>
    </processor-chain>
    </default-exception-strategy>
    </flow>


    Problem statement:
    When any exception occures or clode block fails in processDataBean (Its an entire mvc call) that particular data throws to .



    Here in transaction block have declared saveExceptionDataInDatabase implementation whcih captures the payload from the failing message and then i save this payload along with other business data in database.



    But mule is not able to save this data in table .



    I noticed that it makes database call (data insertion)using hibernate but i am not able to find this record in database.



    I am guessing that this is happening because transaction have not been committed.



    Could you please help me solve this as this has taken lot much of my time.










    share|improve this question


























      1












      1








      1


      1






      I am new to Mule.



      I have implemented below flow in my application's mule_poc.xml.



      I have used mule+spring+hibernate+maven.



      <flow name="Flow1" processingStrategy="allow01Threads30Wait">

      <vm:inbound-endpoint path="flow1"/> //This call is coming from a different location in the same file

      <expression-component>
      Thread.sleep(90000);
      </expression-component>
      <component>
      <spring-object bean="processDataBean" />
      </component>

      <collection-splitter />

      <vm:outbound-endpoint path="myoutBoundFlow" exchange-pattern="request-response">
      <custom-transaction action="ALWAYS_BEGIN"
      factory-class="com.practice.CompositeTransactionFactory" />
      </vm:outbound-endpoint>
      <default-exception-strategy>

      <processor-chain>

      <transactional action="ALWAYS_BEGIN" doc:name="Transactional">
      <logger message="Calling ExceptionReplayProcess component..." level="INFO"/>
      <component><spring-object bean="saveExceptionDataInDatabase" /></component>
      </transactional>
      <choice>
      <when
      expression="message.payload !=null &amp; message.payload instanceof org.mule.message.ExceptionMessage"
      evaluator="groovy">

      </when>
      </choice>
      <outbound-endpoint address="vm://flow-error-handler" exchange-pattern="request-response">
      <custom-transaction action="ALWAYS_BEGIN" factory-class="com.practice.CompositeTransactionFactory" />
      </outbound-endpoint>
      </processor-chain>
      </default-exception-strategy>
      </flow>


      Problem statement:
      When any exception occures or clode block fails in processDataBean (Its an entire mvc call) that particular data throws to .



      Here in transaction block have declared saveExceptionDataInDatabase implementation whcih captures the payload from the failing message and then i save this payload along with other business data in database.



      But mule is not able to save this data in table .



      I noticed that it makes database call (data insertion)using hibernate but i am not able to find this record in database.



      I am guessing that this is happening because transaction have not been committed.



      Could you please help me solve this as this has taken lot much of my time.










      share|improve this question
















      I am new to Mule.



      I have implemented below flow in my application's mule_poc.xml.



      I have used mule+spring+hibernate+maven.



      <flow name="Flow1" processingStrategy="allow01Threads30Wait">

      <vm:inbound-endpoint path="flow1"/> //This call is coming from a different location in the same file

      <expression-component>
      Thread.sleep(90000);
      </expression-component>
      <component>
      <spring-object bean="processDataBean" />
      </component>

      <collection-splitter />

      <vm:outbound-endpoint path="myoutBoundFlow" exchange-pattern="request-response">
      <custom-transaction action="ALWAYS_BEGIN"
      factory-class="com.practice.CompositeTransactionFactory" />
      </vm:outbound-endpoint>
      <default-exception-strategy>

      <processor-chain>

      <transactional action="ALWAYS_BEGIN" doc:name="Transactional">
      <logger message="Calling ExceptionReplayProcess component..." level="INFO"/>
      <component><spring-object bean="saveExceptionDataInDatabase" /></component>
      </transactional>
      <choice>
      <when
      expression="message.payload !=null &amp; message.payload instanceof org.mule.message.ExceptionMessage"
      evaluator="groovy">

      </when>
      </choice>
      <outbound-endpoint address="vm://flow-error-handler" exchange-pattern="request-response">
      <custom-transaction action="ALWAYS_BEGIN" factory-class="com.practice.CompositeTransactionFactory" />
      </outbound-endpoint>
      </processor-chain>
      </default-exception-strategy>
      </flow>


      Problem statement:
      When any exception occures or clode block fails in processDataBean (Its an entire mvc call) that particular data throws to .



      Here in transaction block have declared saveExceptionDataInDatabase implementation whcih captures the payload from the failing message and then i save this payload along with other business data in database.



      But mule is not able to save this data in table .



      I noticed that it makes database call (data insertion)using hibernate but i am not able to find this record in database.



      I am guessing that this is happening because transaction have not been committed.



      Could you please help me solve this as this has taken lot much of my time.







      java mule mule-studio mule-component mule-esb






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 11:24







      RockingDev

















      asked Nov 15 '18 at 10:20









      RockingDevRockingDev

      183129




      183129






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53317205%2ftransaction-roll-backed-in-mule%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53317205%2ftransaction-roll-backed-in-mule%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3