Use a ServletContextListener
and define it in web.xml
:
<listener>
<listener-class>com.company.YourListenerClass</listener-class>
</listener>
(you make a class which implements ServletContextListener
and implement the contextInitialized()
method, where you place your initialization code)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…