本文整理汇总了Java中org.springframework.shell.core.JLineShellComponent.start方法的典型用法代码示例。如果您正苦于以下问题:Java JLineShellComponent.start方法的具体用法?Java JLineShellComponent.start怎么用?Java JLineShellComponent.start使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.shell.core.JLineShellComponent
的用法示例。
在下文中一共展示了JLineShellComponent.start方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: run
import org.springframework.shell.core.JLineShellComponent; //导入方法依赖的package包/类
public ExitShellRequest run() throws IllegalAccessException {
sw.start();
String[] commandsToExecuteAndThenQuit = commandLine.getShellCommandsToExecute();
JLineShellComponent shell = this.ctx.getBean("shell", JLineShellComponent.class);
ExitShellRequest exitShellRequest;
if (null != commandsToExecuteAndThenQuit) {
boolean successful = false;
exitShellRequest = ExitShellRequest.FATAL_EXIT;
for (String cmd : commandsToExecuteAndThenQuit) {
successful = shell.executeCommand(cmd).isSuccess();
if (!successful) {
break;
}
}
if (successful) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
} else {
shell.start();
shell.promptLoop();
exitShellRequest = shell.getExitShellRequest();
if (exitShellRequest == null) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
shell.waitForComplete();
}
sw.stop();
if (shell.isDevelopmentMode()) {
System.out.println("Total execution time: " + sw.getLastTaskTimeMillis() + " ms");
}
return exitShellRequest;
}
示例2: startUp
import org.springframework.shell.core.JLineShellComponent; //导入方法依赖的package包/类
@BeforeClass
public static void startUp() throws InterruptedException, IOException {
if (applicationContext == null) {
if (System.getProperty(SHUTDOWN_AFTER_RUN) != null) {
shutdownAfterRun = Boolean.getBoolean(SHUTDOWN_AFTER_RUN);
}
SpringApplication application = new SpringApplicationBuilder(TestConfig.class).build();
int randomPort = SocketUtils.findAvailableTcpPort();
String dataFlowUri = String.format("--dataflow.uri=http://localhost:%s", serverPort);
String dataSourceUrl = String.format("jdbc:h2:tcp://localhost:%s/mem:dataflow", randomPort);
applicationContext = application.run(
String.format("--server.port=%s", serverPort),
dataFlowUri,
"--spring.jmx.default-domain=" + System.currentTimeMillis(),
"--spring.jmx.enabled=false",
"--security.basic.enabled=false",
"--spring.main.show_banner=false",
"--spring.cloud.config.enabled=false",
"--spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration",
"--spring.datasource.url=" + dataSourceUrl);
JLineShellComponent shell = applicationContext.getBean(JLineShellComponent.class);
if (!shell.isRunning()) {
shell.start();
}
dataFlowShell = new DataFlowShell(shell);
}
}
示例3: startUp
import org.springframework.shell.core.JLineShellComponent; //导入方法依赖的package包/类
@BeforeClass
public static void startUp() throws InterruptedException, IOException {
if (applicationContext == null) {
if (System.getProperty(SHUTDOWN_AFTER_RUN) != null) {
shutdownAfterRun = Boolean.getBoolean(SHUTDOWN_AFTER_RUN);
}
SpringApplication application = new SpringApplicationBuilder(TestConfig.class).build();
int randomPort = SocketUtils.findAvailableTcpPort();
String dataFlowUri = String.format("--dataflow.uri=http://localhost:%s", serverPort);
String dataSourceUrl = String.format("jdbc:h2:tcp://localhost:%s/mem:dataflow", randomPort);
applicationContext = application.run(String.format("--server.port=%s", serverPort), dataFlowUri,
"--spring.jmx.default-domain=" + System.currentTimeMillis(), "--spring.jmx.enabled=false",
"--security.basic.enabled=false", "--spring.main.show_banner=false",
"--spring.cloud.config.enabled=false",
"--spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session"
+ ".SessionAutoConfiguration",
"--spring.datasource.url=" + dataSourceUrl);
JLineShellComponent shell = applicationContext.getBean(JLineShellComponent.class);
if (!shell.isRunning()) {
shell.start();
}
dataFlowShell = new DataFlowShell(shell);
}
}
示例4: run
import org.springframework.shell.core.JLineShellComponent; //导入方法依赖的package包/类
public ExitShellRequest run() {
sw.start();
String[] commandsToExecuteAndThenQuit = commandLine.getShellCommandsToExecute();
JLineShellComponent shell = (JLineShellComponent) this.ctx.getBean("shell", JLineShellComponent.class);
ExitShellRequest exitShellRequest;
if (null != commandsToExecuteAndThenQuit) {
boolean successful = false;
exitShellRequest = ExitShellRequest.FATAL_EXIT;
String[] arr$ = commandsToExecuteAndThenQuit;
int len$ = commandsToExecuteAndThenQuit.length;
for (int i$ = 0; i$ < len$; ++i$) {
String cmd = arr$[i$];
successful = shell.executeCommand(cmd).isSuccess();
if (!successful) {
break;
}
}
if (successful) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
} else {
shell.start();
shell.promptLoop();
exitShellRequest = shell.getExitShellRequest();
if (exitShellRequest == null) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
shell.waitForComplete();
}
sw.stop();
if (shell.isDevelopmentMode()) {
System.out.println("Total execution time: " + sw.getLastTaskTimeMillis() + " ms");
}
return exitShellRequest;
}
示例5: run
import org.springframework.shell.core.JLineShellComponent; //导入方法依赖的package包/类
public ExitShellRequest run() {
sw.start();
String[] commandsToExecuteAndThenQuit = commandLine.getShellCommandsToExecute();
JLineShellComponent shell = (JLineShellComponent)this.ctx.getBean("shell", JLineShellComponent.class);
ExitShellRequest exitShellRequest;
if(null != commandsToExecuteAndThenQuit) {
boolean successful = false;
exitShellRequest = ExitShellRequest.FATAL_EXIT;
String[] arr$ = commandsToExecuteAndThenQuit;
int len$ = commandsToExecuteAndThenQuit.length;
for(int i$ = 0; i$ < len$; ++i$) {
String cmd = arr$[i$];
successful = shell.executeCommand(cmd).isSuccess();
if(!successful) {
break;
}
}
if(successful) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
} else {
shell.start();
shell.promptLoop();
exitShellRequest = shell.getExitShellRequest();
if(exitShellRequest == null) {
exitShellRequest = ExitShellRequest.NORMAL_EXIT;
}
shell.waitForComplete();
}
sw.stop();
if(shell.isDevelopmentMode()) {
System.out.println("Total execution time: " + sw.getLastTaskTimeMillis() + " ms");
}
return exitShellRequest;
}