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.server.EnableDataFlowServer;
|
||||
|
||||
@EnableDataFlowServer
|
||||
@SpringBootApplication
|
||||
public class DataFlowServerApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(DataFlowServerApplication.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user