Maven and Gradle samples for dataflow server

- Minimal and fully working sample of building custom
  dataflow server adding mysql driver.
This commit is contained in:
Janne Valkealahti
2019-07-26 07:31:14 +01:00
parent dbbf78588b
commit 2d0c3cd5d7
19 changed files with 1066 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.example.customdataflowserver;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase;
import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase.Replace;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureTestDatabase(replace = Replace.ANY)
public class CustomDataflowServerApplicationTests {
@Test
public void contextLoads() {
}
}