Spring小结

2018-02-01  本文已影响0人  唯黑

1、IOC 容器

1、概念

2、简单使用

3、配置细节

4、创建对象的几种方式

2、Spring与Struts2整合

1、关键

2、引入jar

3、配置web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <!-- struts2配置 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <!-- Spring配置 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/classes/bean*.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>


    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

3、Aop编程

1、概念

2、步骤

3、切入点表达式语法详解

4、Spring对jdbc模块的支持

1、配置

5、Spring声明式事务管理

1、Jdbc(DataSourceTransactionManager)

2、 Hibernate(HibenateTransactionManager)

上一篇下一篇

猜你喜欢

热点阅读