getServletContext()方法的使用

在dopost()方法中,需要獲取上下文:ServletContext context = getServletContext();而這個方法是通過父類的ServletConfig的實例config來得到的。由於在父類中並未對config賦值,因此我們重寫時需要對父類的config賦值以防獲取上下文報空指針。代碼如下:

public void init(ServletConfig config) throws ServletException { super.init(config); }

你可能感兴趣的:(getServletContext()方法的使用)