Add Stream processing example

This commit is contained in:
Ivan Paolillo
2016-09-01 10:57:47 +02:00
parent cc9370e8ff
commit d9da586447
41 changed files with 2459 additions and 0 deletions
@@ -0,0 +1,14 @@
package org.baeldung.spring.cloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.dataflow.shell.EnableDataFlowShell;
@EnableDataFlowShell
@SpringBootApplication
public class DataFlowShellApplication {
public static void main(String[] args) {
SpringApplication.run(DataFlowShellApplication.class, args);
}
}