Add Stream processing example
This commit is contained in:
+14
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user