public static Object getBean(String beanName){ ApplicationContext context = ContextLoader.getCurrentWebApplicationContext(); return context.getBean(beanName); } public static ServletContext getServletContext(){ WebApplicationContext context = ContextLoader.getCurrentWebApplicationContext(); return context.getServletContext(); }
时间: 2024-10-13 19:02:28