28 lines
691 B
Java
28 lines
691 B
Java
package io.renren;
|
|
|
|
import io.renren.service.DynamicDataSourceTestService;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
/**
|
|
* 多数据源测试
|
|
*
|
|
*/
|
|
@RunWith(SpringRunner.class)
|
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
|
public class DynamicDataSourceTest {
|
|
@Autowired
|
|
private DynamicDataSourceTestService dynamicDataSourceTestService;
|
|
|
|
@Test
|
|
public void test(){
|
|
Long id = 1067246875800000001L;
|
|
|
|
}
|
|
|
|
|
|
}
|