`

Spring 基础知识一

 
阅读更多
一,获取ApplicationContext 几种方式   
    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

  说明:applicationContext.xml必须在classpath中
  ApplicationContext ctx=new FileSystemXmlApplicationContext("/application.xml");

  说明: applicationContext.xml 为系统指定的路径   


二 , web中加载spring容器的几种方式

    1,在web.xml中配置如下
  
 
   	   <!--  Spring 服务层的配置文件 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
	
	   <!--Spring 容器启动监听器-->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
   


三 , struts于spring 整合


     总结的相当不错
     http://www.ibm.com/developerworks/cn/java/j-sr2.html
      •使用 Spring 的 ActionSupport 类整合 Structs
      •使用 Spring 的 DelegatingRequestProcessor 覆盖 Struts 的     RequestProcessor
      •将 Struts Action 管理委托给 Spring 框架


   
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics