zoukankan      html  css  js  c++  java
  • 使用web.xml方式加载 Spring时,获取Spring context的两种方式:

    1、servlet方式加载时:

    【web .xml】

    Xml代码

    代码
     <servlet>  
             
    <servlet-name>dispatcherServlet</servlet-name>  
             
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
             
    <init-param>  
                 
    <param-name>contextConfigLocation</param-name>  
                 
    <param-value>/WEB-INF/applicationContext</param-value>  
             
    </init-param>  
     
    </servlet>  

    【jsp/servlet】

    Java代码

    代码
     ServletContext context = getServletContext();    
     XmlWebApplicationContext applicationContext 
    = (XmlWebApplicationContext)   
       
       
     context.getAttribute(
    "org.springframework.web.servlet.FrameworkServlet.CONTEXT.dispatcherServlet");   
       
       
     DataSource dataSource
    =(DataSource)applicationContext.getBean("dataSource");  


    2、listener方式加载时:

    【web .xml】

    Xml代码 

    代码
     <context-param>   
      
    <param-name>contextConfigLocation</param-name>   
       
    <param-value>/WEB-INF/applicationContext</param-value>   
      
    </context-param>   
       
     
    <listener>   
       
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>   
     
    </listener> 

    Java代码

    代码
     ServletContext context = getServletContext();   
       
           
       WebApplicationContext applicationContext  
    = WebApplicationContextUtils   
         .getWebApplicationContext(context);   
           
      
     
     DataSource dataSource
    =(DataSource)applicationContext.getBean("dataSource");


  • 相关阅读:
    c#个人记录常用方法(更新中)
    Newtonsoft.Json.dll解析json的dll文件使用
    组织http请求
    ado.net中的几个对象
    jquery-easyui使用
    aspx与mvc页面验证码
    aspx页面状态管理(查询字符串Request与Application)
    aspx页面状态管理Cookie和ViewState
    在网页中插入qq连接
    ASP.NET中上传图片检测其是否为真实的图片 防范病毒上传至服务器
  • 原文地址:https://www.cnblogs.com/zhangxz/p/1825847.html
Copyright © 2011-2022 走看看