• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Spring在web.xml中的配置详细介绍

    Spring在web.xml中的配置详细介绍

    前言     

         在实际项目中spring的配置文件applicationcontext.xml是通过spring提供的加载机制自动加载到容器中。在web项目中,配置文件加载到web容器中进行解析。目前,spring提供了两种加载器,以供web容器的加载:一种是ContextLoaderListener,另一种是ContextLoaderServlet。这两种在功能上完全相同,只是前一种是基于Servlet2.3版本中新引入的Listener接口实现,而后一种是基于Servlet接口实现,以下是这两种加载器在web.xml中的配置应用:

    ContextLoaderListener

    listener> 
    listener-class>org.springframework.context.ContextLoaderListener/listener-class> 
    /listener> 
    

    ContextLoaderServlet

    servlet> 
     servlet-name>context/servlet-name> 
    servlet-class>org.springframework.context.ContextLoaderServlet/servlet-class> 
     load-on-startup>1/load-on-startup> 
    /servlet> 
    

         通过上面的配置,web容器会自动加载applicationcontext.xml初始化。

         如果需要指定配置文件的位置,可通过context-param加以指定:

    context-param> 
     param-name>contextConfigLocation/param-name> 
     param-value>/WEB-INF/myApplicationContext.xml/param-value> 
    /context-param> 
    

         之后,可以通过WebApplicationContextUtils.getWebApplicationContext方法在web应用中获取applicationcontext的引用。

    感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

    您可能感兴趣的文章:
    • spring web.xml指定配置文件过程解析
    • Spring中基于XML的AOP配置详解
    • SpringBoot集成JmsTemplate(队列模式和主题模式)及xml和JavaConfig配置详解
    • spring通过导入jar包和配置xml文件启动的步骤详解
    • Spring boot AOP通过XML配置文件声明的方法
    • SpringBoot之logback-spring.xml不生效的解决方法
    • SpringBoot通过yml和xml文件配置日志输出方法
    • 详解spring applicationContext.xml 配置文件
    • SpringBoot返回json和xml的示例代码
    • spring mvc 读取xml文件数据库配置参数的方法
    • spring接口通过配置支持返回多种格式(xml,json,html,excel)
    • spring使用OXM进行对象XML映射解析
    • spring是如何解析xml配置文件中的占位符
    上一篇:JSP开发中hibernate框架的常用检索方式总结
    下一篇:JSP开发Servlet重写init()方法实例详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Spring在web.xml中的配置详细介绍 Spring,在,web.xml,中的,配置,