web.xml配置如下

    
      
        
contextConfigLocation
        
classpath:applicationContext.xml
    
        
    
        
org.springframework.web.context.ContextLoaderListener
    

同样配置好bean与上个模拟的实现相同

这次不再servlet中做测试,直接在.jsp中嵌入代码

<%@ page contentType="text/html;charset=UTF-8" language="java" %>      $Title$     <%//从application域对象中获取IOC容器   ApplicationContext ctx= WebApplicationContextUtils.getWebApplicationContext(application);   //从IOC容器中获取Bean对象     Person person=ctx.getBean(Person.class);   //使用bean对象     person.hello(); %>

这里边的直接写application没看懂。