2017-10-13 09:54:21 +00:00
|
|
|
|
package com.boot.security.server.config;
|
|
|
|
|
|
|
2018-05-16 02:20:44 +00:00
|
|
|
|
import com.alibaba.druid.pool.DruidDataSource;
|
|
|
|
|
|
import com.alibaba.druid.support.http.StatViewServlet;
|
|
|
|
|
|
import com.alibaba.druid.support.http.WebStatFilter;
|
2017-10-17 13:25:10 +00:00
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
2017-10-13 09:54:21 +00:00
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
|
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
|
|
|
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
|
import org.springframework.context.annotation.Primary;
|
|
|
|
|
|
|
2018-05-16 02:20:44 +00:00
|
|
|
|
import javax.sql.DataSource;
|
|
|
|
|
|
import java.sql.SQLException;
|
2017-10-13 09:54:21 +00:00
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-16 02:20:44 +00:00
|
|
|
|
* Druid数据源配置<br>
|
|
|
|
|
|
* 2018.05.16 作废该配置类,因为druid提供了druid-spring-boot-starter,看下pom.xml<br>
|
|
|
|
|
|
* 直接在bootstrap.yml里就能配置druid数据源了<br>
|
|
|
|
|
|
* 前缀spring.datasource.druid,具体看下druid自动注入源码 DruidDataSourceWrapper
|
2017-10-13 09:54:21 +00:00
|
|
|
|
*
|
2018-05-16 02:20:44 +00:00
|
|
|
|
* @author 小威老师
|
|
|
|
|
|
* @see com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceWrapper
|
2017-10-13 09:54:21 +00:00
|
|
|
|
*/
|
2018-05-16 02:20:44 +00:00
|
|
|
|
//@Configuration
|
|
|
|
|
|
@Deprecated
|
2017-10-13 09:54:21 +00:00
|
|
|
|
public class DruidConfig {
|
|
|
|
|
|
|
2018-05-16 02:20:44 +00:00
|
|
|
|
private static final Logger log = LoggerFactory.getLogger("adminLogger");
|
2017-10-17 13:25:10 +00:00
|
|
|
|
|
2018-05-16 02:20:44 +00:00
|
|
|
|
@Bean
|
|
|
|
|
|
public ServletRegistrationBean<StatViewServlet> druidServlet() {
|
|
|
|
|
|
log.info("init Druid Servlet Configuration ");
|
|
|
|
|
|
ServletRegistrationBean<StatViewServlet> servletRegistrationBean = new ServletRegistrationBean<>(
|
|
|
|
|
|
new StatViewServlet(), "/druid/*");
|
|
|
|
|
|
// IP白名单
|
|
|
|
|
|
servletRegistrationBean.addInitParameter("allow", "127.0.0.1");
|
|
|
|
|
|
// IP黑名单(共同存在时,deny优先于allow)
|
2017-10-13 09:54:21 +00:00
|
|
|
|
// servletRegistrationBean.addInitParameter("deny", "192.168.27.26");
|
|
|
|
|
|
// // 控制台管理用户
|
|
|
|
|
|
// servletRegistrationBean.addInitParameter("loginUsername", "admin");
|
|
|
|
|
|
// servletRegistrationBean.addInitParameter("loginPassword", "admin");
|
|
|
|
|
|
// // 是否能够重置数据 禁用HTML页面上的“Reset All”功能
|
|
|
|
|
|
// servletRegistrationBean.addInitParameter("resetEnable", "false");
|
2018-05-16 02:20:44 +00:00
|
|
|
|
return servletRegistrationBean;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
|
public FilterRegistrationBean<WebStatFilter> filterRegistrationBean() {
|
|
|
|
|
|
FilterRegistrationBean<WebStatFilter> filterRegistrationBean = new FilterRegistrationBean<>(
|
|
|
|
|
|
new WebStatFilter());
|
|
|
|
|
|
filterRegistrationBean.addUrlPatterns("/*");
|
|
|
|
|
|
filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*");
|
|
|
|
|
|
return filterRegistrationBean;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 数据源配置
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author 小威老师
|
|
|
|
|
|
*/
|
|
|
|
|
|
// @ConfigurationProperties(prefix = "spring.datasource")
|
|
|
|
|
|
@Deprecated
|
|
|
|
|
|
public class DataSourceProperties {
|
|
|
|
|
|
private String url;
|
|
|
|
|
|
private String username;
|
|
|
|
|
|
private String password;
|
|
|
|
|
|
private String driverClassName;
|
|
|
|
|
|
private int initialSize;
|
|
|
|
|
|
private int minIdle;
|
|
|
|
|
|
private int maxActive;
|
|
|
|
|
|
private int maxWait;
|
|
|
|
|
|
private int timeBetweenEvictionRunsMillis;
|
|
|
|
|
|
private int minEvictableIdleTimeMillis;
|
|
|
|
|
|
private String validationQuery;
|
|
|
|
|
|
private boolean testWhileIdle;
|
|
|
|
|
|
private boolean testOnBorrow;
|
|
|
|
|
|
private boolean testOnReturn;
|
|
|
|
|
|
private boolean poolPreparedStatements;
|
|
|
|
|
|
private int maxPoolPreparedStatementPerConnectionSize;
|
|
|
|
|
|
private String filters;
|
|
|
|
|
|
private String connectionProperties;
|
|
|
|
|
|
|
|
|
|
|
|
public String getUrl() {
|
|
|
|
|
|
return url;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUrl(String url) {
|
|
|
|
|
|
this.url = url;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getUsername() {
|
|
|
|
|
|
return username;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUsername(String username) {
|
|
|
|
|
|
this.username = username;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getPassword() {
|
|
|
|
|
|
return password;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setPassword(String password) {
|
|
|
|
|
|
this.password = password;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getDriverClassName() {
|
|
|
|
|
|
return driverClassName;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setDriverClassName(String driverClassName) {
|
|
|
|
|
|
this.driverClassName = driverClassName;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getInitialSize() {
|
|
|
|
|
|
return initialSize;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setInitialSize(int initialSize) {
|
|
|
|
|
|
this.initialSize = initialSize;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getMinIdle() {
|
|
|
|
|
|
return minIdle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMinIdle(int minIdle) {
|
|
|
|
|
|
this.minIdle = minIdle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getMaxActive() {
|
|
|
|
|
|
return maxActive;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMaxActive(int maxActive) {
|
|
|
|
|
|
this.maxActive = maxActive;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getMaxWait() {
|
|
|
|
|
|
return maxWait;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMaxWait(int maxWait) {
|
|
|
|
|
|
this.maxWait = maxWait;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getTimeBetweenEvictionRunsMillis() {
|
|
|
|
|
|
return timeBetweenEvictionRunsMillis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTimeBetweenEvictionRunsMillis(int timeBetweenEvictionRunsMillis) {
|
|
|
|
|
|
this.timeBetweenEvictionRunsMillis = timeBetweenEvictionRunsMillis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getMinEvictableIdleTimeMillis() {
|
|
|
|
|
|
return minEvictableIdleTimeMillis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMinEvictableIdleTimeMillis(int minEvictableIdleTimeMillis) {
|
|
|
|
|
|
this.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getValidationQuery() {
|
|
|
|
|
|
return validationQuery;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setValidationQuery(String validationQuery) {
|
|
|
|
|
|
this.validationQuery = validationQuery;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isTestWhileIdle() {
|
|
|
|
|
|
return testWhileIdle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTestWhileIdle(boolean testWhileIdle) {
|
|
|
|
|
|
this.testWhileIdle = testWhileIdle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isTestOnBorrow() {
|
|
|
|
|
|
return testOnBorrow;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTestOnBorrow(boolean testOnBorrow) {
|
|
|
|
|
|
this.testOnBorrow = testOnBorrow;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isTestOnReturn() {
|
|
|
|
|
|
return testOnReturn;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTestOnReturn(boolean testOnReturn) {
|
|
|
|
|
|
this.testOnReturn = testOnReturn;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isPoolPreparedStatements() {
|
|
|
|
|
|
return poolPreparedStatements;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setPoolPreparedStatements(boolean poolPreparedStatements) {
|
|
|
|
|
|
this.poolPreparedStatements = poolPreparedStatements;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getMaxPoolPreparedStatementPerConnectionSize() {
|
|
|
|
|
|
return maxPoolPreparedStatementPerConnectionSize;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMaxPoolPreparedStatementPerConnectionSize(int maxPoolPreparedStatementPerConnectionSize) {
|
|
|
|
|
|
this.maxPoolPreparedStatementPerConnectionSize = maxPoolPreparedStatementPerConnectionSize;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getFilters() {
|
|
|
|
|
|
return filters;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setFilters(String filters) {
|
|
|
|
|
|
this.filters = filters;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getConnectionProperties() {
|
|
|
|
|
|
return connectionProperties;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setConnectionProperties(String connectionProperties) {
|
|
|
|
|
|
this.connectionProperties = connectionProperties;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// @Bean
|
|
|
|
|
|
// @Primary
|
|
|
|
|
|
@Deprecated
|
|
|
|
|
|
public DataSource dataSource() {
|
|
|
|
|
|
DruidDataSource datasource = new DruidDataSource();
|
|
|
|
|
|
datasource.setUrl(url);
|
|
|
|
|
|
datasource.setUsername(username);
|
|
|
|
|
|
datasource.setPassword(password);
|
|
|
|
|
|
datasource.setDriverClassName(driverClassName);
|
|
|
|
|
|
|
|
|
|
|
|
datasource.setInitialSize(initialSize);
|
|
|
|
|
|
datasource.setMinIdle(minIdle);
|
|
|
|
|
|
datasource.setMaxActive(maxActive);
|
|
|
|
|
|
datasource.setMaxWait(maxWait);
|
|
|
|
|
|
datasource.setTimeBetweenEvictionRunsMillis(timeBetweenEvictionRunsMillis);
|
|
|
|
|
|
datasource.setMinEvictableIdleTimeMillis(minEvictableIdleTimeMillis);
|
|
|
|
|
|
datasource.setValidationQuery(validationQuery);
|
|
|
|
|
|
datasource.setTestWhileIdle(testWhileIdle);
|
|
|
|
|
|
datasource.setTestOnBorrow(testOnBorrow);
|
|
|
|
|
|
datasource.setTestOnReturn(testOnReturn);
|
|
|
|
|
|
datasource.setPoolPreparedStatements(poolPreparedStatements);
|
|
|
|
|
|
datasource.setMaxPoolPreparedStatementPerConnectionSize(maxPoolPreparedStatementPerConnectionSize);
|
|
|
|
|
|
try {
|
|
|
|
|
|
datasource.setFilters(filters);
|
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
|
log.error("异常", e);
|
|
|
|
|
|
}
|
|
|
|
|
|
datasource.setConnectionProperties(connectionProperties);
|
|
|
|
|
|
return datasource;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-10-13 09:54:21 +00:00
|
|
|
|
}
|