在JSP或者SERVLET外访问SPRING也是很常见的ApplicationContext是Spring的容器环境通过ApplicationContext对象可以访问所有配置的bean在Web开发开发中常常需要从JSP或者Servlet或者Action中获取ApplicationContext对象这时候就无法使用new关键字通过查找配置文件来实例化ApplicationContext这个对象了Spring通过WebApplicationContextUtils可以了
当然首先要在WEBXML中配置
orgsprntextContextLoaderListener
之后就可以访问了
WebApplicationContext ctx=WebApplicationContextUtilsgetWebApplicationContext(getServletContext())
IlogService ilog=(IlogService)wacgetBean(logService)