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">

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/290921.html

(0)
上一篇 2022年10月12日
下一篇 2022年10月12日

相关推荐

发表回复

登录后才能评论