Tomcat - Servlet init() called twice upon startup
I have an issue with a standalone Tomcat server (not linked with Apache). When Tomcat starts up, the init() method of the servlet is getting called twice, i.e., two servlets are starting up. Even more worrying is that these appear to be loaded by different classloaders - there is only one Java process running on the command line so it's not multiple Tomcats. web.xml snippet (the servlet is only configured once, and only configured in the webapp web.xml): <servlet> <servlet-name>LenderInterfaceServlet</servlet-name> <display-name>Lender Interface Servlet</display-name> <servlet-class>com.foobar