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