骡子工作室 ESB 发现以元素 'xa 事务'开头的无效内容



当我选择事务类型从无事务更改为XA事务时,此错误显示

我该怎么修?

这是我在下面的配置

<flow name="insert_flow" doc:name="insert_flow">
    <jdbc-ee:outbound-endpoint exchange-pattern="one-way" queryKey="INSERT_TOKEN" queryTimeout="-1" connector-ref="Database" doc:name="Insert to mysql">
        <jdbc-ee:query key="INSERT_TOKEN" value="insert into users(FirstName) values(#[FirstName]);"/>
        <xa-transaction action="ALWAYS_BEGIN" interactWithExternal="true"/>
    </jdbc-ee:outbound-endpoint>
    <scripting:component doc:name="pyhon return success result">
        <scripting:script engine="jython">
            <scripting:text><![CDATA[result = str('{"status":"true"}')]]></scripting:text>
        </scripting:script>
    </scripting:component>
    <rollback-exception-strategy doc:name="Rollback Exception Strategy"/>
</flow>

感谢您的提前通知。

这是影响版本1.3.x的工作室验证的已知问题(此处详细信息(

这在Studio 3.4上已经修复,你可以在这个博客文章

中找到关于测试版的信息

相关内容

最新更新