亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

前四章源碼怎么運行

前四章源碼 是什么工程啊 連pom文件都沒有 ?怎么啟這個項目

正在回答

1 回答

pom只是在管理項目,不做啟動工作,pom里面管理是引入的jar包、版本以及各個模塊之間的依賴。前四章只是在用Junit測試的,給你個源碼吧

public?class?UnitTestBase?{

????private?ClassPathXmlApplicationContext?context;

????private?String?springXMLPath;

????public?UnitTestBase()?{
????}

????public?UnitTestBase(String?springXMLPath)?{
????????this.springXMLPath?=?springXMLPath;
????}

????@Before
????public?void?before()?{
????????if?(StringUtils.isEmpty(springXMLPath))?{
????????????springXMLPath?=?"classpath*:spring-*.xml";
????????}
????????try?{
????????????context?=?new?ClassPathXmlApplicationContext(springXMLPath.split("[,\\s]+"));
????????????context.start();
????????}?catch?(BeansException?e)?{
????????????e.printStackTrace();
????????}
????}

????@After
????public?void?after()?{
????????context.destroy();
????}

????@SuppressWarnings("unchecked")
????protected?<T?extends?Object>?T?getBean(String?beanId)?{
????????return?(T)?context.getBean(beanId);
????}

????protected?<T?extends?Object>?T?getBean(Class<T>?clazz)?{
????????return?context.getBean(clazz);
????}

}

上面這個是Junit測試類的父類,你寫的測試類集成它就行了

1 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

前四章源碼怎么運行

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號