You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
770 B
32 lines
770 B
|
|
|
|
package com.gaotao;
|
|
|
|
import com.gaotao.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
|
|
public class DynamicDataSourceTest {
|
|
@Autowired
|
|
private DynamicDataSourceTestService dynamicDataSourceTestService;
|
|
|
|
@Test
|
|
public void test(){
|
|
Long id = 1L;
|
|
|
|
dynamicDataSourceTestService.updateUser(id);
|
|
dynamicDataSourceTestService.updateUserBySlave1(id);
|
|
dynamicDataSourceTestService.updateUserBySlave2(id);
|
|
}
|
|
|
|
}
|