为了账号安全,请及时绑定邮箱和手机立即绑定

class UnitTestBase 完整代码

class UnitTestBase 这个类就不能说一下吗? 完整的代码在哪里

正在回答

1 回答

package com.imooc.test.base;


import org.junit.After;

import org.junit.Before;

import org.springframework.context.support.ClassPathXmlApplicationContext;


public class UnitTestBase {

String springXmlPath;

ClassPathXmlApplicationContext context;

public UnitTestBase() {}

public UnitTestBase(String springXmlPath){

this.springXmlPath = springXmlPath;

}

@Before

public void before(){

if("" == springXmlPath){

springXmlPath = "classpath*:spring-*.xml";

}

try{

context = new ClassPathXmlApplicationContext(springXmlPath.split("[,\\s]+"));

context.start();

}catch(Exception e){

e.printStackTrace();

}

}

@After

public void  after(){

context.destroy();

}

public <T extends Object > T getBean(String beanId){

try{

return (T) context.getBean(beanId);

}catch(Exception e){

e.printStackTrace();

return null;

}

}


}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Spring入门篇
  • 参与学习       268787    人
  • 解答问题       963    个

为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础

进入课程

class UnitTestBase 完整代码

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信