Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-cloud-analysis
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.online.exam
pica-cloud-analysis
提交
a5b1f5ef
提交
a5b1f5ef
编写于
12月 24, 2018
作者:
minghao.wu
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev-antispam-20181210' into release
上级
07cb0dfe
9f71a46c
流水线
#3204
已通过 于阶段
in 7 second
变更
1
流水线
3
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
6 行增加
和
0 行删除
+6
-0
DataSourceConfig.java
.../exam/analysis/server/configuration/DataSourceConfig.java
+6
-0
未找到文件。
server/src/main/java/com/pica/cloud/online/exam/analysis/server/configuration/DataSourceConfig.java
浏览文件 @
a5b1f5ef
...
@@ -3,6 +3,7 @@ package com.pica.cloud.online.exam.analysis.server.configuration;
...
@@ -3,6 +3,7 @@ package com.pica.cloud.online.exam.analysis.server.configuration;
import
com.zaxxer.hikari.HikariConfig
;
import
com.zaxxer.hikari.HikariConfig
;
import
com.zaxxer.hikari.HikariDataSource
;
import
com.zaxxer.hikari.HikariDataSource
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.cloud.context.config.annotation.RefreshScope
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.cors.CorsConfiguration
;
import
org.springframework.web.cors.CorsConfiguration
;
...
@@ -16,6 +17,7 @@ import javax.sql.DataSource;
...
@@ -16,6 +17,7 @@ import javax.sql.DataSource;
* @date 2018/8/23 8:46
* @date 2018/8/23 8:46
*/
*/
@Configuration
@Configuration
@RefreshScope
public
class
DataSourceConfig
{
public
class
DataSourceConfig
{
/**
/**
* 如果取不到 就用默认值
* 如果取不到 就用默认值
...
@@ -35,6 +37,9 @@ public class DataSourceConfig {
...
@@ -35,6 +37,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 +82,7 @@ public class DataSourceConfig {
...
@@ -77,6 +82,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
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录