缺少XD中的模块

时间:2015-08-29 00:40:24

标签: spring-xd

我正在尝试使用Spring XD的快速入门指南解决非常基本的问题。但已经花了一个多小时。

我正在http://projects.spring.io/spring-xd/#quick-start

关注指南

但是当我尝试使用以下

创建流时
AppDelegate *delegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];

if (!self.pin && delegate.terminated) {
    //        [[[UIAlertView alloc] initWithTitle:@"No Pin" message:@"Please Set a pin before trying to unlock" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
    //return;
    [self dismissViewControllerAnimated:YES completion:nil];
} else if (!self.isPin && !delegate.terminated) {

    ABPadLockScreenViewController *lockScreen = [[ABPadLockScreenViewController alloc] initWithDelegate:self complexPin:YES];
    [lockScreen setAllowedAttempts:3];

    lockScreen.modalPresentationStyle = UIModalPresentationFullScreen;
    lockScreen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;

    [self presentViewController:lockScreen animated:YES completion:nil];
}

找不到标准模块" log"。

**stream create --definition "time | log" --name ticktock --deploy**

我尝试将XD_HOME值更改为

**Command failed org.springframework.xd.rest.client.impl.SpringXDException: Could not find module with name 'log' and type 'sink'**

尝试使用完整路径从XD_HOME运行xd-singlenode和xd-shell。

1 个答案:

答案 0 :(得分:0)

嗯,无论如何你应该能够进入 $ INSTALLDIRECTORY / spring-xd-1.2.0.RELEASE / xd / bin然后运行./xd-singlenode。

  

cd $ INSTALLDIRECTORY / spring-xd-1.2.0.RELEASE / xd / bin

     

./ XD-singlenode

一旦你的单节点容器启动并运行启动xd-shell通过$ INSTALLDIRECTORY / spring-xd-1.2.0.RELEASE / shell / bin / xd-shell

  

./ XD-壳

你应该至少能够获得并运行tictoc。 ENV的东西可能只是你自己的环境。