应用程序未部署在具有批处理功能的mule独立服务器上

时间:2016-05-25 11:51:42

标签: mule mule-studio mule-component

我在独立服务器上部署mule app。在我的mule应用程序中,我使用了批处理。 我收到了以下错误

NSTrackingArea *area = [[NSTrackingArea alloc] initWithRect:[self.view frame] options:NSTrackingMouseEnteredAndExited | NSTrackingInVisibleRect | NSTrackingActiveAlways owner:self userInfo:nil];
[self.view addTrackingArea:area];

-(void)mouseEntered:(NSEvent *)theEvent {
    NSLog(@"mouseEntered");
}

-(void)mouseExited:(NSEvent *)theEvent {
    NSLog(@"mouseExited");
}

我是否需要配置与批次相关的任何jar? 我怎么解决这个问题? 我需要在mule独立服务器上部署我的mule应用程序 请帮我解决这个问题..

谢谢

1 个答案:

答案 0 :(得分:2)

此批处理模块应该已经是lib / mule文件夹中Enterprise独立服务器运行时的一部分:mule-module-batch-ee-3.8.0.jar。看起来您可能正在使用不支持企业模块的Community Edition Standalone运行时。