Apparently the following is generating a loop(the GenericServlet
class is calling the subclass's init()
)
public void init() throws ServletException {
ServletConfig c = this.getServletConfig();
super.init(c);
}
I'm probably just doing this wrong. Thank you guys in advance!