数据库
首页 > 数据库> > junit查询mysql数据库的数据_Junit BeforeClass 怎么获取数据库连接?

junit查询mysql数据库的数据_Junit BeforeClass 怎么获取数据库连接?

作者:互联网

想在BeforeClass里面获取数据库连接,在跑测试之前把当前数据库中的数据线备份掉。

不太想要在里面写死,想调用root-context.xml里面配置的数据库连接

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations = {"classpath:spring/root-context.xml"})

public class Demo extends JunitBase {

@Autowired

private DemoService testClass;

@BeforeClass

public static void beforeAll() throws Exception {

// 在这里怎么获取root-context.xml里面配置的数据库连接

}

root-context.xml

destroy-method="close">

想在BeforeClass里面获取数据库连接,在跑测试之前把当前数据库中的数据线备份掉。 不太想要在里面写死,想调用root-context.xml里面配置的数据库连接 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"classpath:spring/root-context.xml"}) public class Demo extends JunitBase { @Autowired private DemoService testClass; @BeforeClass public static void beforeAll() throws Exception { // 在这里怎么获取root-context.xml里面配置的数据库连接 } root-context.xml destroy-method="close">

标签:数据库连接,数据
来源: