您好,登录后才能下订单哦!
本篇内容介绍了“MyBatis怎么配置多sql脚本执行”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
在实际开发场景中,有时候为了减少代码的冗余,在编写数据执行方法时,希望一个方法同时执行两个sql脚本,顺序执行,不影响业务逻辑。
1、在数据源配置中增加如下配置:allowMultiQueries=true
spring: profiles: dev datasource: #主数据源 master: type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false&serverTimezone=UTC&allowMultiQueries=true username: root password: 123456
2、多sql语句以分号;相隔
<update id="updateId" parameterType="java.lang.Integer"> update t_menu set name = #{name} where id = #{id}; update t_stu set order_no = order_no+1 where id = #{id}; </update>
注意:多条sql语句同时执行,不存在事务,即其中一条sql语句报错不会影响另外一条语句执行。
解决办法:
在service层方法里添加@Transactional注解,添加@Transactional注解后,spring默认抛出未检查unchecked异常(继承自RuntimeException的异常)或者Error才会回滚,换句话说,若只是添加@Transactional注解,对于RuntimeException异常或者Error错误默认会触发事务回滚,对于其他的异常是不会触发异常的,若此时想要其他异常也能触发回滚,需要添加@Transactional的rollbackFor属性值,比如在代码中手动抛出Exception异常
如下:
if (res > 0) { // 抛出异常,事物捕抓异常,事物进行回滚 throw new Exception("无权限审批!"); }
此时加上rollbackFor属性值如下,当出现Exception异常时,可以触发事务回滚。
@Transactional(rollbackFor = Exception.class)
建议:自定义一个异常处理类,该异常类继承RuntimeException类,在需要抛出异常时,调用该自定义异常类,此时方法执行出现异常,会抛出RuntimeException,在方法头加上@Transactional即可,而不需要添加rollbackFor属性值。
再平时的工作、学习中,我们会遇见插入,修改,删除多个表的操作,我们不可能写多条insert标签等,这就需要在一个标签中写多个SQL语句
<insert id="addPurchase" parameterType="com.zhao.vo.PurchaseVoOne"> insert into enters_sells_saves.purchase ( amount, price, purchase_time) values (#{amount},#{price},#{purchaseTime}); insert into enters_sells_saves.goods (goods_name) values (#{goodsName}); insert into enters_sells_saves.supplier (supplier_name) values (#{supplierName}); </insert>
需要我们在数据库连接配置中加入:
allowMultiQueries=true
如:
jdbc:mysql://localhost:3306/enters_sells_saves?useSSL=true&useUnicode=true&characterEncoding=utf8&serverTimezone=GMT&allowMultiQueries=true
这样就可以在一个标签中使用多个sql语句了
“MyBatis怎么配置多sql脚本执行”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。