我通过删除侦听器bean并为我的属性创建了一个新bean解决了这一问题。然后,我在侦听器中使用以下命令获取属性bean:
@Overridepublic void contextInitialized(ServletContextEvent event) { final WebApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(event.getServletContext()); final Properties props = (Properties)springContext.getBean("myProps");}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)