Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试 ServletContext 在我的 Servlet 项目中使用如下
ServletContext
ServletContext context =request.getServletContext();
问题是当我尝试使用它时,我找不到getServletContext(); 请求对象。
getServletContext();
我得到的是在附件中看到的
我是 Servlets 的新手,刚从视频教程系列中得到它,请指导我如何获得ServletContext();我的应用程序
ServletContext();
getServletContext()可从HttpServlet您的 servlet 扩展的类中获得。您可以调用该方法,就好像它是在您自己的 servlet 类中定义的一样:
getServletContext()
HttpServlet
ServletContext context = getServletContext();
getServletContext()方法未定义HttpServletRequest,您需要从HttpSession
HttpServletRequest
HttpSession
或者
getServletContext()只需在您的内部调用Servlet
Servlet
请看这个