課程
/后端開(kāi)發(fā)
/Java
/Struts2攔截器淺析
為什么最后一個(gè)System.out.println("執(zhí)行Action花費(fèi)的時(shí)間:" + (end - start) + "ms");沒(méi)輸出到控制臺(tái)
2016-05-06
源自:Struts2攔截器淺析 3-3
正在回答
@Override
public String intercept(ActionInvocation invocation) throws Exception {
System.out.println("執(zhí)行Action之前");
// 1.執(zhí)行Action之前
long start = System.currentTimeMillis();
System.out.println("執(zhí)行下一個(gè)攔截器,如果已經(jīng)是最后一個(gè)攔截器,則執(zhí)行目標(biāo)Action");
// 2.執(zhí)行下一個(gè)攔截器,如果已經(jīng)是最后一個(gè)攔截器,則執(zhí)行目標(biāo)Action
String result = invocation.invoke();
System.out.println("執(zhí)行Action之后");
// 3.執(zhí)行Action之后
long end = System.currentTimeMillis();
System.out.println("執(zhí)行Action花費(fèi)的時(shí)間:" + (end - start) + "ms");
return result;
}
發(fā)現(xiàn)攔截器完全沒(méi)有執(zhí)行,后來(lái)檢查到攔截器配置問(wèn)題-----------包名有個(gè)字母大寫(xiě),汗,細(xì)節(jié)
舉報(bào)
本視頻教程將代領(lǐng)大家了解Struts2攔截器的工作原理及配置
2 回答出事了出事了
3 回答直接訪問(wèn)action出錯(cuò)啦,怎么回事
2 回答把老師的代碼載了下來(lái),但是啟動(dòng)TomCat時(shí)出現(xiàn)配置文件無(wú)法載入的情況是什么回事啊?
1 回答快來(lái)看看怎么回事????
3 回答根據(jù)老師的代碼,報(bào)錯(cuò),找不到index方法,請(qǐng)問(wèn)配置哪里出錯(cuò)了,謝謝。
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-05-07
@Override
public String intercept(ActionInvocation invocation) throws Exception {
System.out.println("執(zhí)行Action之前");
// 1.執(zhí)行Action之前
long start = System.currentTimeMillis();
System.out.println("執(zhí)行下一個(gè)攔截器,如果已經(jīng)是最后一個(gè)攔截器,則執(zhí)行目標(biāo)Action");
// 2.執(zhí)行下一個(gè)攔截器,如果已經(jīng)是最后一個(gè)攔截器,則執(zhí)行目標(biāo)Action
String result = invocation.invoke();
System.out.println("執(zhí)行Action之后");
// 3.執(zhí)行Action之后
long end = System.currentTimeMillis();
System.out.println("執(zhí)行Action花費(fèi)的時(shí)間:" + (end - start) + "ms");
return result;
}
發(fā)現(xiàn)攔截器完全沒(méi)有執(zhí)行,后來(lái)檢查到攔截器配置問(wèn)題-----------包名有個(gè)字母大寫(xiě),汗,細(xì)節(jié)