上一篇博客讲述了Struts2+Spring的集成合并,主要是利用了一个中间jar包,这篇博客在加上Ibatis持久层框架,三个框架进行合并。其中Struts2和Spring部分和前边的一样,主要是讲解Spring和Ibatis之间的合并,这里也涉及到Spring的AOP编程思想,声明式事务的使用。

  一,看一下分工吧:

    Struts2:负责流程控制,主要针对的是从JSP页面到action类这一块的步骤。

    Spring:负责各个类,对象的创建,包括action,service,dao,数据连接对象,Ibatis框架的核心对象sqlMapClient,Spring自身的事务处理扩展对象transactionManager。

    Ibatis:负责对JDBC的封装,简化访问数据的程序。

  二,环境的搭建:

    1,需要考入的jar包:

    commons-fileupload-1.2.1.jar(Struts2:文件上传)

    commons-io-1.3.2.jar(Struts2:文件上传)

    freemarker-2.3.15.jar(Struts2:视图展现技术)

    ognl-2.7.3.jar(Struts2:对象图形导航语言,用于做数据操作)

    struts2-core-2.1.8.1.jar(Struts2:核心jar包)

    xwork-core-2.1.6.jar(Struts2:webwork框架的核心jar包)

    commons-logging.jar(Spring:日志输出操作,实现日志输出的转换)

    junit-3.8.2.jar(非必须:单元测试jar包)

    log4j-1.2.15.jar(非必须:日志输出jar包)

    spring.jar(Spring:核心jar包)

    struts2-spring-plugin-2.1.8.1.jar(Struts2和Spring的合并jar包)

    c3p0-0.9.1.2.jar(做数据源操作的jar包)

    ibatis-2.3.4.726.jar(Ibatis:核心jar包)

    ojdbc14.jar(oracle数据库的连接jar包)

    aspectjrt.jar(Spring:支持AOP功能的jar包)

    aspectjweaver.jar(Spring:支持AOP功能的jar包)

    cglib-nodep-2.1_3.jar(Spring:实现基于继承的动态代理)

    2,拷贝进去的配置文件:

    Struts2:struts.xml

    Spring:applicationContext.xml

    Ibatis:SqlMapConfig.xml  和SqlMap.xml

    日志输出的属性文件:log4j.properties

    配置数据库连接信息:db.properties

  三,各个配置文件的编写:

  1,struts.xml中,主要用来配置action类,

<package name="system" namespace="/system" extends="struts-default">                

  <action name="insertUser" class="userAction" method="insert">
<result name="success" type="redirect">/userlist.jsp</result>
<result name="error" type="redirect">/error.jsp</result>
  </action>
</package>

  2,applicationContext.xml:

    <?xml version="1.0" encoding="UTF-8"?>  

           <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <bean id="loginAction" class="com.ljh.action.LoginAction" scope="prototype">
<property name="userService" ref="userService"></property>
</bean> <!-- action层类的设置,关联service -->
<bean id="userAction" class="com.ljh.action.UserAction" scope="prototype">
<property name="userService" ref="userService"></property>
</bean>
<!-- service层类的设置,关联dao -->
<bean id="userService" class="com.ljh.service.UserService" >
<property name="userDao" ref="userDao"></property>
</bean>
<!-- dao层类的设置 ,关联sqlMapClient-->
<bean id="userDao" class="com.ljh.dao.UserDao">
<property name="sqlMapClient" ref="sqlMapClient"></property>
</bean> <!-- 表示把属性资源文件的信息加载到Spring环境中进行利用 -->
<bean class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:db.properties</value>
</list>
</property>
</bean> <!-- 配置C3P0数据源连接池,通过读取属性文件 -->
<bean id="c3p0" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="user" value="${username}"></property>
<property name="password" value="${password}"></property>
<property name="jdbcUrl" value="${url}"></property>
<property name="driverClass" value="${driverClass}"></property>
</bean> <!-- IBatis核心对象sqlMapClient的声明 ,通过工厂SqlMapClientFactoryBean和IBatis核心配置文件-->
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource" ref="c3p0"></property>
<property name="configLocations">
<list>
<value>classpath:SqlMapConfig.xml</value>
</list>
</property>
</bean> <!-- 配置功能扩展对象 - 事务管理,通过c3p0 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="c3p0"></property>
</bean> <!-- 声明事务管理AOP功能 -->
<aop:config>
<aop:advisor advice-ref="transactionAdvice" pointcut="execution(* com.ljh.service.*.*(..))"/>
</aop:config> <!--事务的配置-->
<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="save*" propagation="REQUIRED" isolation="DEFAULT" rollback-for="java.lang.Exception"/>
<tx:method name="delete*" propagation="REQUIRED" isolation="DEFAULT" rollback-for="java.lang.Exception"/>
<tx:method name="update*" propagation="REQUIRED" isolation="DEFAULT" rollback-for="java.lang.Exception"/>
<tx:method name="select*" read-only="true"/>
</tx:attributes>
</tx:advice> </beans>

  3,SqlMapConfig.xml

<sqlMapConfig>
  <!-- 只需配置映射文件即可 -->
  <sqlMap resource="com/ljh/bean/User.xml" /> </sqlMapConfig>

   4,User.xml(SqlMap.xml)

  5,属性文件db.properties:

url=jdbc:oracle:thin:@127.0.0.1:1521:ljh
driverClass=oracle.jdbc.driver.OracleDriver
username=scott
password=ti

   四,对于jsp和其他三层这里不再给出。但是提醒一点,service中需要将Exception剖出,这样才会被框架捕捉到,事务才能起作用。Dao层可以直接使用sqlMapClient来调用其中的增删改查的方法。

   这样我们的三个框架的合并就算完成,在实际中,根据业务进行相关类的添加,相关配置文件的补充即可。总之多运用。

Struts2+Spring+Ibatis集成合并的更多相关文章

  1. Eclipse rap 富客户端开发总结(11) : rcp/rap与spring ibatis集成

    1. rcp/rap 与 spring 集成 Activator 是rcp/rap 启动时需要加载的类, 只需要加载一遍,所以与spring 集成的时候一般是在这个类里面加载spring 的Appli ...

  2. struts2,spring,ibatis学习

    1.1 什么是struts2? MVC思想给网站设计带来了巨大的好处,但是MVC毕竟只是一种思想,不同的程序员写出来的基于MVC思想的应用,风格可能不一样.影响程序的标准化,Struts是为了规范MV ...

  3. zTree的调用设使用(跨两个系统,两类技术实现的项目案例SpringMVC+Spring+MyBatis和Struts2+Spring+ibatis框架组合)

    1.从zTree官网上下载zTree的包,zTree的官方网址是:http://www.ztree.me/v3/main.php#_zTreeInfo 2.引入zTree所需的依赖,例如(jQuery ...

  4. Spring+Ibatis集成开发实例

    首先简历数据库demo(本文选mysql) 数据库脚本: CREATE TABLE `ibatis` (  `id` varchar(20) NOT NULL,  `name` varchar(20) ...

  5. 把elipse非maven的Struts2+Spring+Ibatis项目导入Idea中

    1.按图示操作 2.选中自己要得到的项目 3.之后设定得到的项目放在哪里 项目得到之后,对项目点击右键Open Module Settings,点击Project,设置生成的编译文件存储路径 4.单击 ...

  6. Struts2+Spring集成合并

    前边单独总结了Struts2,Spring和Ibaits框架了,那么怎么结合使用呢?这次先来看一下Sturts2和Spring的集成合并.其实挺简单的,就是导入各自的jar包以及连接彼此的jar包,分 ...

  7. Struts2+Spring+Hibernate 三大框架的合并集成

    这次来看看Struts2+Spring+Hibernate三大框架的整合应用,主要是Spring和Hibernate框架的整合,因为前边已经将Strtus2+Spring整合过了基本一样.  首先看一 ...

  8. 集成Struts2+Spring+Hibernate_两种方案

    集成Struts2+Spring+Hibernate 第一种方案:让Spring创建Struts2的Action,不让Spring完全管理Struts2的Action      Struts2 Act ...

  9. spring boot集成mybatis-plus插件进行自定义sql方法开发时报nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

    spring boot集成mybatis-plus插件进行自定义sql方法开发时报nested exception is org.apache.ibatis.binding.BindingExcept ...

随机推荐

  1. deciaml(十进制浮点运算)

    # -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #========== ...

  2. c++之 printf 打印内容

    该代码全部在Visual Studio 2015中编写,有关VS2015的安装流程后期在写相关的博文 首先让我们来输出一下hello, world! 1.首先新建一个main.cpp的文件,然后在该文 ...

  3. (36)JS运动之使物体向右运动

    基本思路:样式要是绝对定位,不然的话根本走不起来.当开启一个定时器的时候.必须先清除定时器.这是为了防止鼠标连续点击button而开启多个定时器,导致物体的速度加快等原因,其次要控制好物体的运动和停止 ...

  4. Android应用切换皮肤功能实现

    原文地址:http://www.eoeandroid.com/thread-318159-1-1.html 现在大多数android应用都支持切换皮肤的功能.比如千千静听,墨迹天气等等.本文介绍两种切 ...

  5. My way to Python - Day03

    列表和字典的赋值 dict1 = {} dict1['k1'] = 'v1' list1 = [] list1.append('v1') 集合系列 1,计数器 Python 2.7.6 (defaul ...

  6. WEB服务器6--IIS架构补充篇

    第一部分我将谈谈IIS的两个不同的版本—IIS 5.x 和 IIS 6的处理模型:IIS如何监听来自外界的Http request,如何根据ISAPI Extension Mapping将对于不同Re ...

  7. FullCalendar 的学习笔记(一)

    前一段时间,一个老项目需要新增一个小功能,日程表~ 于是网上找了下,发现FullCalendar这个控件还不错于是就拿来用了下,下面简单介绍下我的学习笔记. 首先就是了解下FullCalendar的A ...

  8. Ext Radio 取消选中

    今天,做项目的时候遇到了要吧Ext Radio单选按钮取消选中状态,由于没有在formpanel中写, 导致不能用reset()方法,试了各种方法,最后这样写管用. radio1.setValue(f ...

  9. C#如何解决对ListView控件更新以及更新时界面闪烁问题

    第一个问题:如何更新ListView控件内容 很多时候运行窗体程序时,由于程序中使用了多线程加之操作不当,所以在对控件操作时会出现下面这样的异常:   这是因为我们在窗体中添加的控件都有属于自己的线程 ...

  10. android 利用重力感应监听 来电时翻转手机后静音。

       在CallNotifier.java中 加入如下代码: public void GetSensorManager(Context context) { sm = (SensorManager) ...