小编典典

如何在Servlet中使用“应用程序”对象?

jsp

如果要编码JSP文件,则只需要使用嵌入的“应用程序”对象。但是如何在Servlet中使用它呢?


阅读 287

收藏
2020-06-10

共1个答案

小编典典

applicationJSP中的对象被称为ServletContext在servlet对象。可以通过继承的GenericServlet#getServletContext()方法使用。您可以在servlet的任何地方(init(ServletConfig)方法除外)调用此函数。

public class YourServlet extends HttpServlet {

    @Override
    public void init() throws ServletException { 
         ServletContext ctx = getServletContext(); 
         // ...
    }

    @Override
    public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { 
         ServletContext ctx = getServletContext(); 
         // ...
    }

    @Override
    public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { 
         ServletContext ctx = getServletContext(); 
         // ...
    }

}
2020-06-10