Returns a reference to the ServletContext in which this servlet is running. See ServletConfig#getServletContext. This method is supplied for convenience. It gets the context from the servlet's ServletConfig object. @return ServletContext the ServletContext</co
()
| 111 | * method |
| 112 | */ |
| 113 | @Override |
| 114 | public ServletContext getServletContext() { |
| 115 | return getServletConfig().getServletContext(); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Returns information about the servlet, such as author, version, and copyright. By default, this method returns an |
no test coverage detected