2018-02-04-5.springContext.xml创建

利用spring本身写好的一个listener即可

1.导包(4+2),再加1

spring-web-4.2.4.RELEASE.jar

 
     org.springframework.web.context.ContextLoaderListener
 

  
    contextConfigLocation
    classpath:applicationContext.xml
  

注意:在idea中,这些约束都是可以智能提示的,contextConfigLocation值需要写死

2.将Service对象以及Dao对象配置到spring容器

2018-02-04-5.springContext.xml创建_第1张图片

3.在Action中获得容器中的Service对象

2018-02-04-5.springContext.xml创建_第2张图片

web.xml中配置容器随项目启动
2018-02-04-5.springContext.xml创建_第3张图片

在Action中获得容器(上面是在struts项目中获得的ServletActionContext对象)

管理容器在项目中的生命周期

注意!这是错误的示范.导致每次请求都创建新的容器

你可能感兴趣的:(2018-02-04-5.springContext.xml创建)