最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

前四章源碼怎么運(yùn)行

前四章源碼 是什么工程啊 連pom文件都沒有 ?怎么啟這個(gè)項(xiàng)目

正在回答

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測試類的父類,你寫的測試類集成它就行了

1 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
Spring入門篇
  • 參與學(xué)習(xí)       268800    人
  • 解答問題       1026    個(gè)

為您帶來IOC和AOP的基本概念及用法,為后續(xù)高級(jí)課程學(xué)習(xí)打下基礎(chǔ)

進(jìn)入課程

前四章源碼怎么運(yùn)行

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)