首页 > TAG信息列表 > ds2

SpringBoot 性能优化

1.Tomcat覆盖默认配置 server: tomcat: max-connections: 2000 accept-count: 100 threads: max: 800 min-spare: 100 max-http-header-size: 131072 2.优化线程池配置 @EnableAsync @Configuration public class AsyncConfig { public stati

探讨 | SpringBoot + MyBatis 多数据源事物问题

这是小小本周的第二篇,本篇将会着重讲解关于SpringBoot + MyBatis 多数据源的事物的问题。 多数据源 此处模拟创建订单和扣减库存。先创建订单表和库存表 CREATE TABLE `t_storage` ( `id` int(11) NOT NULL AUTO_INCREMENT, `commodity_code` varchar(255) DEFAULT NULL, `co

浅析SpringBoot多数据源配置

一、多数据源配置 1、首先是配置文件   这里采用yml配置文件,其他类型配置文件同理。   这里配置了两个数据源,一个名字叫ds1数据源,一个名字叫ds2数据源,如果你想配置更多的数据源,继续加就行了 spring: # 数据源配置 datasource: ds1: #数据源1 driver-class-name: