課程
/后端開發(fā)
/Java
/Spring入門篇
前四章源碼 是什么工程啊 連pom文件都沒有 ?怎么啟這個(gè)項(xiàng)目
2018-12-12
源自:Spring入門篇 2-1
正在回答
pom只是在管理項(xiàng)目,不做啟動(dòng)工作,pom里面管理是引入的jar包、版本以及各個(gè)模塊之間的依賴。前四章只是在用Junit測試的,給你個(gè)源碼吧
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); ????} }
上面這個(gè)是Junit測試類的父類,你寫的測試類集成它就行了
舉報(bào)
為您帶來IOC和AOP的基本概念及用法,為后續(xù)高級(jí)課程學(xué)習(xí)打下基礎(chǔ)
1 回答是不是源碼只有前三章的?
1 回答下載源碼不能運(yùn)行
1 回答下載的源碼如何在eclipse中運(yùn)行?
2 回答老師的代碼 怎么運(yùn)行起來?
2 回答按源碼運(yùn)行測試時(shí)候還是報(bào)錯(cuò)
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-12-14
pom只是在管理項(xiàng)目,不做啟動(dòng)工作,pom里面管理是引入的jar包、版本以及各個(gè)模塊之間的依賴。前四章只是在用Junit測試的,給你個(gè)源碼吧
上面這個(gè)是Junit測試類的父類,你寫的測試類集成它就行了