我有一个java类,它使用种子集合创建一个干净的MongoDB数据库。它会自动识别数据库是否缺失并创建它。我想在启动MuleEsb时运行它。这样我就不需要记得在我开始骡子之前调用它。我希望把它放在一个流程中并在骡子启动时自动运行一次流程。
当骡子开始时,有没有办法进行一次性操作?
---更新---
根据下面的对话,我将以下内容添加到我的mule配置中,并自动触发流程。
<quartz:connector name="Quartz" validateConnections="true"/>
<flow name="testService1">
<quartz:inbound-endpoint name="runOnce" repeatCount="0" repeatInterval="1" jobName="job1" connector-ref="Quartz">
<quartz:event-generator-job>
<quartz:payload>foo</quartz:payload>
</quartz:event-generator-job>
</quartz:inbound-endpoint>
<logger message="INBOUND HEADERS = #[headers:inbound:*]" level="WARN"/>
</flow>
答案 0 :(得分:12)
我在一个月前创建了一个JIRA来请求这样一个功能:http://www.mulesoft.org/jira/browse/MULE-6877
目前,您可以使用一个技巧:a Quartz inbound endpoint with an event generator job repeatCount = 0
,只会在启动时触发您的流量。
或者,您可以在触发特定事件时侦听上下文事件并调用流。以下显示了一个调用启动和关闭流程的侦听器:
package com.acme;
import org.mule.DefaultMuleEvent;
import org.mule.DefaultMuleMessage;
import org.mule.MessageExchangePattern;
import org.mule.api.MuleException;
import org.mule.api.MuleRuntimeException;
import org.mule.api.context.notification.MuleContextNotificationListener;
import org.mule.config.i18n.MessageFactory;
import org.mule.construct.Flow;
import org.mule.context.notification.MuleContextNotification;
public class FlowInvokingContextListener implements MuleContextNotificationListener<MuleContextNotification>
{
private Flow startingFlow;
private Flow stoppingFlow;
public void onNotification(final MuleContextNotification notification)
{
if (notification.getAction() == MuleContextNotification.CONTEXT_STARTED)
{
sendNotificationToFlow(notification, startingFlow);
}
else if (notification.getAction() == MuleContextNotification.CONTEXT_STOPPING)
{
sendNotificationToFlow(notification, stoppingFlow);
}
}
private void sendNotificationToFlow(final MuleContextNotification notification, final Flow flow)
{
try
{
final DefaultMuleEvent event = new DefaultMuleEvent(new DefaultMuleMessage(notification,
notification.getMuleContext()), MessageExchangePattern.REQUEST_RESPONSE, startingFlow);
flow.process(event);
}
catch (final MuleException me)
{
throw new MuleRuntimeException(MessageFactory.createStaticMessage("Failed to invoke: "
+ startingFlow), me);
}
}
public void setStartingFlow(final Flow startingFlow)
{
this.startingFlow = startingFlow;
}
public void setStoppingFlow(final Flow stoppingFlow)
{
this.stoppingFlow = stoppingFlow;
}
}
配置为:
<spring:beans>
<spring:bean name="flowInvokingContextListener"
class="com.acme.FlowInvokingContextListener"
p:startingFlow-ref="startFlow" p:stoppingFlow-ref="stopFlow" />
</spring:beans>
<notifications>
<notification event="CONTEXT" />
<notification-listener ref="flowInvokingContextListener" />
</notifications>
答案 1 :(得分:0)
另一种选择是使用自定义代理来执行此操作:
http://www.mulesoft.org/documentation/display/current/Mule+Agents