使用Spring动态加载配置文件

 在web.xml中配置

 	
 		contextConfigLocation
 		classpath:applicationcontext.xml
 	
 	
 	
 		org.springframework.web.context.ContextLoaderListener
 	
调用时通过以下方式获取ApplicationContext对象
ApplicationContext ac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());

你可能感兴趣的:(Java,web)