读书人

Spring 基础知识1

发布时间: 2012-11-03 10:57:44 作者: rapoo

Spring 基础知识一
一,获取ApplicationContext 几种方式

       <!--  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 框架


读书人网 >编程

热点推荐