Struts Action 中調用 Servlet Function
用到的機會不多啦...不過還是有可能會用到...
從Struts Action中呼叫Servlet
且先調用Servlet中的init()做參數的設定使用
MealHitLogServlet servlet = new MealHitLogServlet();
ServletConfig sc=getServlet().getServletConfig();
try {
servlet.init(sc);
} catch (ServletException e) {
e.printStackTrace();
}
servlet.addHitLog(String.valueOf(venderNo), String.valueOf(mealId));
PS: Servlet 3.0就有支援Async invoke了,會更方便唷~
PS: Servlet 3.0就有支援Async invoke了,會更方便唷~