|
@@ -5,6 +5,7 @@ import com.alibaba.druid.support.http.StatViewServlet
|
|
|
import com.alibaba.druid.support.http.WebStatFilter
|
|
|
import org.mybatis.spring.annotation.MapperScan
|
|
|
import org.slf4j.LoggerFactory
|
|
|
+import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
|
|
import org.springframework.boot.web.servlet.FilterRegistrationBean
|
|
|
import org.springframework.boot.web.servlet.ServletRegistrationBean
|
|
@@ -17,100 +18,98 @@ import javax.sql.DataSource
|
|
|
@Configuration
|
|
|
@ConfigurationProperties(prefix = "druid.datasource-sys")
|
|
|
@MapperScan(basePackages = ["com.gxzc.zen.sys"])
|
|
|
-class SysDruidConfig:DruidConfig()
|
|
|
+open class SysDruidConfig : DruidConfig()
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-/*-----------------druid数据源bean注册 */
|
|
|
+/**
|
|
|
+ * druid数据源bean注册
|
|
|
+ */
|
|
|
open class DruidConfig {
|
|
|
- var url:String?=null
|
|
|
- var username:String?=null
|
|
|
- var password:String?=null
|
|
|
- var filters:String?=null
|
|
|
+ var url: String? = null
|
|
|
+ var username: String? = null
|
|
|
+ var password: String? = null
|
|
|
+ var filters: String? = null
|
|
|
|
|
|
- var driverClassName:String?="com.mysql.jdbc.Driver"
|
|
|
- var initialSize:Int?=5
|
|
|
- var minIdle:Int?=5
|
|
|
- var maxActive:Int?=20
|
|
|
- var maxWait:Long?=60000
|
|
|
+ var driverClassName: String? = "com.mysql.jdbc.Driver"
|
|
|
+ var initialSize: Int = 5
|
|
|
+ var minIdle: Int = 5
|
|
|
+ var maxActive: Int = 20
|
|
|
+ var maxWait: Long = 60000
|
|
|
|
|
|
- var timeBetweenEvictionRunsMillis:Long?=null
|
|
|
- var minEvictableIdleTimeMillis:Long?=null
|
|
|
- var validationQuery:String?=null
|
|
|
- var testWhileIdle:Boolean?=null
|
|
|
- var testOnBorrow:Boolean?=null
|
|
|
- var testOnReturn:Boolean?=null
|
|
|
+ var timeBetweenEvictionRunsMillis: Long = 60000
|
|
|
+ var minEvictableIdleTimeMillis: Long = 30000
|
|
|
+ var validationQuery: String? = null
|
|
|
+ var testWhileIdle: Boolean = true
|
|
|
+ var testOnBorrow: Boolean = false
|
|
|
+ var testOnReturn: Boolean = false
|
|
|
|
|
|
- private val logger= LoggerFactory.getLogger(javaClass)
|
|
|
+ private val logger = LoggerFactory.getLogger(javaClass)
|
|
|
|
|
|
- private var datasource:DruidDataSource?=null
|
|
|
-
|
|
|
-// private val name=nm
|
|
|
+ private var datasource: DruidDataSource? = null
|
|
|
|
|
|
@Bean
|
|
|
- open fun druidDataSource(): DataSource {
|
|
|
- datasource = DruidDataSource()
|
|
|
- datasource?.url = url
|
|
|
- datasource?.username = username
|
|
|
- datasource?.password = password
|
|
|
- datasource?.driverClassName = driverClassName
|
|
|
- datasource?.initialSize = initialSize!!
|
|
|
- datasource?.minIdle = minIdle!!
|
|
|
- datasource?.maxActive = maxActive!!
|
|
|
- datasource?.maxWait = maxWait!!
|
|
|
- datasource?.timeBetweenEvictionRunsMillis = timeBetweenEvictionRunsMillis!!
|
|
|
- datasource?.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis!!
|
|
|
- datasource?.validationQuery = validationQuery!!
|
|
|
- datasource?.isTestWhileIdle = testWhileIdle!!
|
|
|
- datasource?.isTestOnBorrow = testOnBorrow!!
|
|
|
- datasource?.isTestOnReturn = testOnReturn!!
|
|
|
+ open fun druidDataSource(): DataSource? {
|
|
|
+ datasource = DruidDataSource().also {
|
|
|
+ it.url = url
|
|
|
+ it.username = username
|
|
|
+ it.password = password
|
|
|
+ it.driverClassName = driverClassName
|
|
|
+ it.initialSize = initialSize
|
|
|
+ it.minIdle = minIdle
|
|
|
+ it.maxActive = maxActive
|
|
|
+ it.maxWait = maxWait
|
|
|
+ it.timeBetweenEvictionRunsMillis = timeBetweenEvictionRunsMillis
|
|
|
+ it.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis
|
|
|
+ it.validationQuery = validationQuery
|
|
|
+ it.isTestWhileIdle = testWhileIdle
|
|
|
+ it.isTestOnBorrow = testOnBorrow
|
|
|
+ it.isTestOnReturn = testOnReturn
|
|
|
+ }
|
|
|
try {
|
|
|
datasource?.setFilters(filters)
|
|
|
} catch (e: SQLException) {
|
|
|
logger.error("druid configuration initialization filter", e)
|
|
|
}
|
|
|
|
|
|
- return datasource!!
|
|
|
+ return datasource
|
|
|
}
|
|
|
|
|
|
- fun getDatasource():DruidDataSource{
|
|
|
- return datasource!!
|
|
|
+ fun getDatasource(): DruidDataSource? {
|
|
|
+ return datasource
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-/*-----------------配置druid显示界面 */
|
|
|
+/**
|
|
|
+ * 配置druid显示界面
|
|
|
+ */
|
|
|
@Configuration
|
|
|
@ConfigurationProperties(prefix = "druid.view")
|
|
|
-class DruidViewConfig{
|
|
|
- var username:String?=null
|
|
|
- var password:String?=null
|
|
|
- var slowsql:String?=null
|
|
|
+@ConditionalOnProperty(prefix = "druid.view", name = ["enable"], havingValue = "true", matchIfMissing = true)
|
|
|
+open class DruidViewConfig {
|
|
|
+ var username: String? = null
|
|
|
+ var password: String? = null
|
|
|
+ var slowSql: String? = null
|
|
|
|
|
|
@Bean
|
|
|
- fun druidServlet(): ServletRegistrationBean {
|
|
|
-// if(!enable!!)return throw Exception()
|
|
|
- val reg = ServletRegistrationBean()
|
|
|
- reg.setServlet(StatViewServlet())
|
|
|
- reg.addUrlMappings("/druid/*")
|
|
|
- reg.addInitParameter("loginUsername", username)
|
|
|
- reg.addInitParameter("loginPassword", password)
|
|
|
- reg.addInitParameter("logSlowSql", slowsql)
|
|
|
- return reg
|
|
|
+ @ConditionalOnProperty(prefix = "druid.view", name = ["enable"], havingValue = "true", matchIfMissing = true)
|
|
|
+ open fun druidServlet(): ServletRegistrationBean {
|
|
|
+ return ServletRegistrationBean().also {
|
|
|
+ it.setServlet(StatViewServlet())
|
|
|
+ it.addUrlMappings("/druid/*")
|
|
|
+ it.addInitParameter("loginUsername", username)
|
|
|
+ it.addInitParameter("loginPassword", password)
|
|
|
+ it.addInitParameter("logSlowSql", slowSql)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Bean
|
|
|
- fun filterRegistrationBean(): FilterRegistrationBean {
|
|
|
-// if(!enable!!)return throw Exception()
|
|
|
- val filterRegistrationBean = FilterRegistrationBean()
|
|
|
- filterRegistrationBean.filter = WebStatFilter()
|
|
|
- filterRegistrationBean.addUrlPatterns("/*")
|
|
|
- filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*")
|
|
|
- filterRegistrationBean.addInitParameter("profileEnable", "true")
|
|
|
- return filterRegistrationBean
|
|
|
+ @ConditionalOnProperty(prefix = "druid.view", name = ["enable"], havingValue = "true", matchIfMissing = true)
|
|
|
+ open fun filterRegistrationBean(): FilterRegistrationBean {
|
|
|
+ return FilterRegistrationBean().also {
|
|
|
+ it.filter = WebStatFilter()
|
|
|
+ it.addUrlPatterns("/*")
|
|
|
+ it.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*")
|
|
|
+ it.addInitParameter("profileEnable", "true")
|
|
|
+ }
|
|
|
}
|
|
|
}
|