提交 9f34edaf 编写于 作者: minghao.wu's avatar minghao.wu

fix: 修改字符集

上级 fca08723
流水线 #2880 已通过 于阶段
in 7 second
...@@ -35,6 +35,9 @@ public class DataSourceConfig { ...@@ -35,6 +35,9 @@ public class DataSourceConfig {
@Value("${spring.datasource.hikari.connection-test-query}") @Value("${spring.datasource.hikari.connection-test-query}")
private String testQuery; private String testQuery;
@Value("${spring.datasource.tomcat.init-s-q-l}")
private String initQuery;
@Value("${spring.hikari.cachePrepStmts}") @Value("${spring.hikari.cachePrepStmts}")
private String cachePrepStmts ; private String cachePrepStmts ;
...@@ -77,6 +80,7 @@ public class DataSourceConfig { ...@@ -77,6 +80,7 @@ public class DataSourceConfig {
config.setPassword(password); //密码 config.setPassword(password); //密码
config.setConnectionTestQuery(testQuery); config.setConnectionTestQuery(testQuery);
config.setPoolName(poolName); config.setPoolName(poolName);
config.setConnectionInitSql(initQuery);
config.addDataSourceProperty("cachePrepStmts", cachePrepStmts); //是否自定义配置,为true时下面两个参数才生效 config.addDataSourceProperty("cachePrepStmts", cachePrepStmts); //是否自定义配置,为true时下面两个参数才生效
config.addDataSourceProperty("prepStmtCacheSize", prepStmtCacheSize); //连接池大小默认25,官方推荐250-500 config.addDataSourceProperty("prepStmtCacheSize", prepStmtCacheSize); //连接池大小默认25,官方推荐250-500
config.addDataSourceProperty("prepStmtCacheSqlLimit", prepStmtCacheSqlLimit); //单条语句最大长度默认256,官方推荐2048 config.addDataSourceProperty("prepStmtCacheSqlLimit", prepStmtCacheSqlLimit); //单条语句最大长度默认256,官方推荐2048
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册