Spring的事务管理难点剖析(2):应用分层的迷惑

         Web、Service及DAO三层划分就像西方国家的立法、行政、司法三权分立同样被奉为金科玉律,甚至有的开发人员认为若是要使用Spring的事务 管理就必定要先进行三层的划分。这个看似荒唐的论调在开发人员中很有市场。更有甚者,认为每层必须先定义一个接口,而后再定义一个实现类。其结果是:一个 很简单的功能,也至少须要3个接口和3个类,再加上视图层的JSP和JS等,打牌均可以围上两桌了,这种误解害人不浅。
   对将“面向接口编程”奉为圭臬,认为放之四海而皆准的论调,笔者深不觉得然。是的,“面向接口编程”是Martin Fowler、Rod Johnson这些大师提倡的行事原则。若是拿这条原则去开发框架和产品,怎么强调都不为过。可是,对于咱们通常的开发人员来讲,作的最多的是普通工程项 目,每每只是一些对数据库增、删、查、改的功能。此时,“面向接口编程”除了带来更多的类文件外,看不到更多其余的好处。

  Spring框架所提供的各类好处(如AOP、注解加强、注解MVC等)的惟一前提就是让POJO的类变成一个受Spring容器管理的Bean,除此以 外没有其余任何的要求。下面的实例用一个POJO完成全部的功能,既是Controller,又是Service,仍是DAO: java

package com.baobaotao.mixlayer; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; //①将POJO类经过注解变成Spring MVC的Controller @Controller public class MixLayerUserService { //②自动注入JdbcTemplate @Autowired private JdbcTemplate jdbcTemplate; //③经过Spring MVC注解映射成为处理HTTP请求的函数,同时做为一个拥有事务性的方法 @RequestMapping("/logon.do") @Transactional public String logon(String userName,String password){ if(isRightUser(userName,password)){ String sql = "UPDATE t_user u SET u.score = u.score + ? WHERE user_name =?"; jdbcTemplate.update(sql,20,userName); return "success"; }else{ return "fail"; } } private boolean isRightUser(String userName,String password){ //do sth return true; } }

  经过@Controller注解将MixLayerUserService变成Web层的Controller,同时也是Service层的服务类。此 外,因为直接使用JdbcTemplate访问数据,因此MixLayerUserService仍是一个DAO。来看一下对应的Spring配置文件: mysql

<?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:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" 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-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> … <!--①事务管理配置-> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" p:dataSource-ref="dataSource"/> <tx:annotation-driven/> <!--②启动Spring MVC的注解功能--> <bean class="org.springframework.web.servlet.mvc.annotation. AnnotationMethodHandlerAdapter"/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp"/> </beans>

在①处,经过事务注解驱动使MixLayerUserService的logon()工做于事务环境下,②处配置了Spring MVC的一些基本设施。要使程序可以运行起来还必须进行web.xml的相关配置: web

<?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"> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:com/baobaotao/mixlayer/applicationContext.xml</param-value> </context-param> <context-param> <param-name>log4jConfigLocation</param-name> <param-value>/WEB-INF/classes/log4j.properties</param-value> </context-param> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>user</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:com/baobaotao/mixlayer/applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>user</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> </web-app>

这个配置文件很简单,惟一须要注意的是DispatcherServlet的配置。默认状况下Spring MVC根据Servlet的名字查找WEB-INF下的<servletName>-servlet.xml做为Spring MVC的配置文件,在此,咱们经过contextConfigLocation参数显式指定Spring MVC配置文件的确切位置。
   将org.springframework.jdbc及org.springframework.transaction的日志级别设置为DEBUG,启 动项目,并访问http://localhost:8088/chapter10/logon.do?userName=tom应 用,MixLayerUserService#logon方法将做出响应,查看后台输出日志,以下所示:spring

引用
Returning cached instance of singleton bean 'transactionManager'
  Creating new transaction with name [com.baobaotao.mixlayer.MixLayerUserService.logon]:   
    PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''

(DataSourceTransactionManager.java:204) - Acquired Connection [jdbc:mysql://localhost:3306/sampledb, UserName=root@localhost , MySQL-AB JDBC Driver] for JDBC transaction
(DataSourceTransactionManager.java:221) - Switching JDBC Connection [jdbc:mysql://localhost:3306/sampledb, UserName=root@localhost , MySQL-AB JDBC Driver] to manual commit
(JdbcTemplate.java:810) - Executing prepared SQL update
(JdbcTemplate.java:569) - Executing prepared SQL statement [UPDATE t_user u SET u.score = u.score + ? WHERE user_name =?]
(JdbcTemplate.java:819) - SQL update affected 0 rows
(AbstractPlatformTransactionManager.java:752) - Initiating transaction commit
(DataSourceTransactionManager.java:264) - Committing JDBC transaction on Connection [jdbc:mysql://localhost:3306/sampledb, UserName=root@localhost , MySQL-AB JDBC Driver]

   日志中红色部分说明了MixLayerUserService#logon方法已经正确运行在事务上下文中。

   Spring框架自己不该是代码复杂化的理由,使用Spring的开发者应该是无拘无束的:从实际应用出发,去除那些所谓原则性的接口,去掉强制分层的束缚,简单才是硬道理。 sql

  注:以上内容摘自《Spring 3.x企业应用开发实战》 数据库

相关文章
相关标签/搜索