美文网首页Mule ESB
MULE事务配置

MULE事务配置

作者: 明明德撩码 | 来源:发表于2020-04-13 14:28 被阅读0次

在mule的事务可能为jdbc事务,jms事务,xa事务等,多种事务.这里讲解事务的几个动作:

相关的文档:https://www.mulesoft.org/documentation-3.2/display/MULE2USER/Transaction+Management

transaction可以使用的动作为:

NONE - Never participate in a transaction.(不采用事务)

ALWAYS_BEGIN - Always start a new transaction when receiving a message. If a previous transaction exists, it commits that transaction.(接收消息时候必须有一个新的事务,如果事务已经存在,则先commit,在创建新事务.)

BEGIN_OR_JOIN - If a transaction is already in progress when an event is received, join the transaction, otherwise start a new transaction.(采用事务,如果事务存在,直接使用,如果不存在,创建新事务)

ALWAYS_JOIN - Always expects a transaction to be in progress when an event is received. If there is no transaction, an exception is thrown.(在接收消息时候总是期望有一个事务,如果事务不存在,抛出异常信息)

JOIN_IF_POSSIBLE- Will join the current transaction if one is available. Otherwise, no transaction is created (如果事务存在则使用事务,如果事务不存在,则不创建事务)

举例:jms-queue-with-transaction.xml

<?xml version="1.0" encoding="UTF-8"?>  
<mule xmlns="http://www.mulesoft.org/schema/mule/core"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xmlns:jms="http://www.mulesoft.org/schema/mule/jms"  
    xmlns:vm="http://www.mulesoft.org/schema/mule/vm"  
    xmlns:spring="http://www.springframework.org/schema/beans"   
    xmlns:tx="http://www.springframework.org/schema/tx"  
    xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd  
        http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd  
        http://www.mulesoft.org/schema/mule/vm http://www.mulesoft.org/schema/mule/vm/current/mule-vm.xsd  
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd  
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">  
  
    <vm:connector name="VMQueue"/>  
       
     <!-- 创建链接 -->  
    <jms:activemq-connector name="jmsConnector" maxRedelivery="1">  
        <dispatcher-threading-profile doThreading="false"/>  
    </jms:activemq-connector>  
      
    <!-- 定义压缩转换器 -->  
    <gzip-compress-transformer name="Compress"/>  
    <gzip-uncompress-transformer name="Uncompress"/>  
      
    
    <!-- 定义输入队列 -->  
    <endpoint name="in" address="jms://queue/in" exchange-pattern="one-way"/>  
      
    <!-- see MULE-3342 for what this test is supposed to check -->  
    <model name="model">  
        <service name="vm-to-jms-queue">  
            <inbound>  
                <inbound-endpoint address="vm://in" exchange-pattern="one-way"/>  
            </inbound>  
            <outbound>  
                <pass-through-router>  
                    <outbound-endpoint ref="in" >  
                        <jms:transaction action="ALWAYS_BEGIN" timeout="3000"/>  
                    </outbound-endpoint>  
                </pass-through-router>  
            </outbound>  
        </service>  
          
        <service name="jms-to-vm">  
            <inbound>  
                <inbound-endpoint ref="in"/>  
            </inbound>  
            <outbound>  
                <pass-through-router>  
                    <outbound-endpoint address="vm://out" exchange-pattern="one-way"/>  
                </pass-through-router>  
            </outbound>  
        </service>  
    </model>  
</mule>

java代码
public class MuleJMSMain {  
    public static void main(String[] args)  {  
        try {  
            String configFile = "jms-queue-with-transaction.xml";  
            String[] configFileArr = new String[] {configFile };  
            MuleContextFactory muleContextFactory = new DefaultMuleContextFactory();  
            MuleContext context = muleContextFactory  
                    .createMuleContext(new SpringXmlConfigurationBuilder(configFileArr));  
            context.start();  
            LocalMuleClient client = context.getClient();  
            client.send("vm://in", new DefaultMuleMessage("i love china ", context));  
  
            MuleMessage response = client.request("vm://out", 100000);  
            System.out.println("payload as string :"+response.getPayloadAsString());  
              
              
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
          
    }  
} 

相关文章

  • MULE事务配置

    在mule的事务可能为jdbc事务,jms事务,xa事务等,多种事务.这里讲解事务的几个动作: 相关的文档:htt...

  • Mule运行时用户指南

    Mule运行时用户指南 Mule官方原文链接 Mule运行时 本篇指南提供里关于如何使用Mule运行时(常称作Mu...

  • 在Mule应用中的流程图架构

    在Mule应用中的流程图架构 Mule官方原文链接 本篇对Mule应用中的流程图进行描述,流程图是用Mule来构建...

  • 创建一个Mule应用程序

    教程:创建一个Mule应用程序 Mule官方原文链接 学着创建一个 “Hello World” Mule项目, 然...

  • Mule消息(message)的结构

    Mule消息(message)的结构 Mule官方原文链接 本文所阐述的Mule消息的是指流程图中的消息而非批处理...

  • docs.mulesoft.com 翻译 - 目录

    教程: 创建一个Mule应用程序 关键性概念 Mule运行时用户指南 Mule消息(message)的结构 Mul...

  • Mule消息转换

    Mule消息转换 Mule官方原文链接 为了更好的理解Mule消息处理器的运作,可以对处理前后的消息进行查看。转换...

  • Spring

    Spring整体 Spring事务 核心抽象 配置1、编程式事务和AOP配置声明式事务配置2、 没有捕获的异常才会...

  • spring-事务

    一 事务信息配置 配置事务管理器及数据库连接池 配置事务注解@Transactional处理,注入事务管理器

  • Spring事务配置&&回滚失效的原因之一

    包名的配置问题 Spring 事务的隔离性 Spring事务的传播行为 事务配置 applicationConte...

网友评论

    本文标题:MULE事务配置

    本文链接:https://www.haomeiwen.com/subject/odigmhtx.html