About Question enthuware.jwpv6.2.747 :
Posted: Wed Sep 28, 2011 12:28 pm
It is very strange the code :
because there is no "service" method in HttpServlet without parameters, so the code does not compile.
If it we put, the code still does not compile because our service method does not declare any thrown exception.
Am I missing something?
Code: Select all
public void service(HttpServletRequest req, HttpServletResponse res)
{
super.service();
}
If it we put
Code: Select all
super.service(req, res);
Am I missing something?