本文整理自孤傲苍狼大大的博客,,,
在servlet的service方法中获取ServletContext对象也行出现java.lang.NullPointerException(空指针)异常,代码如下:
1 //获取ServletContext对象 2 ServletContext servletContext = this.getServletContext();
原来是重写了 init(ServletConfig)方法,但重写的init方法内部没有调用super.init(config);就是这导致了错误!
父类的 init(ServletConfig)有处理获取ServletContext对象的引用,在doGet/doPost/service方法方法中才能 够通过 getServletContext()方法获取到SeverletContext对象!
重 写了Servlet的init方法后一定要记得调用父类的init方法,否则在service/doGet/doPost方法中使用 getServletContext()方法获取ServletContext对象时就会出现 java.lang.NullPointerException异常
1 public void init(ServletConfig config) throws ServletException{ 2 //重写了Servlet的init方法后一定要记得调用父类的init方法,否则在service/doGet/doPost方法中使用getServletContext()方法获取ServletContext对象时就会出现java.lang.NullPointerException异常 3 super.init(config); 4 }
时间: 2024-10-18 08:46:36