how to make sure a servlet is loaded at the application startup 3f

Solutions on MaxInterview for how to make sure a servlet is loaded at the application startup 3f by the best coders in the world

showing results for - "how to make sure a servlet is loaded at the application startup 3f"
Josefa
18 Aug 2018
1
2<servlet>
3	<servlet-name>foo</servlet-name>
4	<servlet-class>com.foo.servlets.Foo</servlet-class>
5	<load-on-startup>5</load-on-startup>
6</servlet> 
7
similar questions