我想在加载Listener之前加载servlet但是我不知道如何实现它。任何引导?
答案 0 :(得分:2)
你不能。
ContextLoaderListener
是ServletContextListener,因此,它会通过两种事件方法通知:contextInitialized
和contextDestroyed
由Servlet规范contextInitialized
合同指定:
收到Web应用程序初始化过程正在启动的通知。
在初始化Web应用程序中的任何过滤器或servlet之前,会通知所有ServletContextListener上下文初始化。