我在独立服务器上部署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应用程序 请帮我解决这个问题..
谢谢
答案 0 :(得分:2)
此批处理模块应该已经是lib / mule文件夹中Enterprise独立服务器运行时的一部分:mule-module-batch-ee-3.8.0.jar。看起来您可能正在使用不支持企业模块的Community Edition Standalone运行时。