From efd9f1388c822b6aebc29370ad36e899c613f179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=94=85=E7=9B=96?= <332309254@qq.com> Date: Sat, 13 Mar 2021 21:07:50 +0800 Subject: [PATCH] style:license format --- license.txt | 5 ++--- .../dynamic/datasource/DynamicRoutingDataSource.java | 5 ++--- .../java/com/baomidou/dynamic/datasource/annotation/DS.java | 5 ++--- .../dynamic/datasource/annotation/DSTransactional.java | 5 ++--- .../com/baomidou/dynamic/datasource/annotation/Master.java | 5 ++--- .../com/baomidou/dynamic/datasource/annotation/Slave.java | 5 ++--- .../datasource/aop/DynamicDataSourceAnnotationAdvisor.java | 5 ++--- .../aop/DynamicDataSourceAnnotationInterceptor.java | 5 ++--- .../datasource/aop/DynamicLocalTransactionAdvisor.java | 5 ++--- .../dynamic/datasource/creator/BasicDataSourceCreator.java | 5 ++--- .../dynamic/datasource/creator/DataSourceCreator.java | 5 ++--- .../dynamic/datasource/creator/DefaultDataSourceCreator.java | 5 ++--- .../dynamic/datasource/creator/DruidDataSourceCreator.java | 5 ++--- .../dynamic/datasource/creator/HikariDataSourceCreator.java | 5 ++--- .../dynamic/datasource/creator/JndiDataSourceCreator.java | 5 ++--- .../dynamic/datasource/ds/AbstractRoutingDataSource.java | 5 ++--- .../com/baomidou/dynamic/datasource/ds/GroupDataSource.java | 5 ++--- .../com/baomidou/dynamic/datasource/ds/ItemDataSource.java | 5 ++--- .../com/baomidou/dynamic/datasource/enums/SeataMode.java | 5 ++--- .../exception/CannotSelectDataSourceException.java | 5 ++--- .../datasource/exception/ErrorCreateDataSourceException.java | 5 ++--- .../datasource/plugin/MasterSlaveAutoRoutingPlugin.java | 5 ++--- .../dynamic/datasource/processor/DsHeaderProcessor.java | 5 ++--- .../baomidou/dynamic/datasource/processor/DsProcessor.java | 5 ++--- .../dynamic/datasource/processor/DsSessionProcessor.java | 5 ++--- .../datasource/processor/DsSpelExpressionProcessor.java | 5 ++--- .../datasource/provider/AbstractDataSourceProvider.java | 5 ++--- .../datasource/provider/AbstractJdbcDataSourceProvider.java | 5 ++--- .../datasource/provider/DynamicDataSourceProvider.java | 5 ++--- .../datasource/provider/YmlDynamicDataSourceProvider.java | 5 ++--- .../spring/boot/autoconfigure/DataSourceProperty.java | 5 ++--- .../autoconfigure/DynamicDataSourceAutoConfiguration.java | 5 ++--- .../DynamicDataSourceCreatorAutoConfiguration.java | 5 ++--- .../DynamicDataSourceHealthCheckConfiguration.java | 5 ++--- .../boot/autoconfigure/DynamicDataSourceProperties.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidConfig.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidConsts.java | 5 ++--- .../druid/DruidDynamicDataSourceConfiguration.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidSlf4jConfig.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidStatConfig.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidWallConfig.java | 5 ++--- .../spring/boot/autoconfigure/druid/DruidWallConfigUtil.java | 5 ++--- .../spring/boot/autoconfigure/hikari/HikariCpConfig.java | 5 ++--- .../datasource/strategy/DynamicDataSourceStrategy.java | 5 ++--- .../strategy/LoadBalanceDynamicDataSourceStrategy.java | 5 ++--- .../datasource/strategy/RandomDynamicDataSourceStrategy.java | 5 ++--- .../dynamic/datasource/support/DataSourceClassResolver.java | 5 ++--- .../dynamic/datasource/support/DbHealthIndicator.java | 5 ++--- .../com/baomidou/dynamic/datasource/support/DdConstants.java | 5 ++--- .../dynamic/datasource/support/HealthCheckAdapter.java | 5 ++--- .../baomidou/dynamic/datasource/support/ScriptRunner.java | 5 ++--- .../java/com/baomidou/dynamic/datasource/toolkit/Base64.java | 5 ++--- .../com/baomidou/dynamic/datasource/toolkit/CryptoUtils.java | 5 ++--- .../datasource/toolkit/DynamicDataSourceContextHolder.java | 5 ++--- .../com/baomidou/dynamic/datasource/toolkit/StringUtils.java | 5 ++--- .../baomidou/dynamic/datasource/tx/ConnectionFactory.java | 5 ++--- .../com/baomidou/dynamic/datasource/tx/ConnectionProxy.java | 5 ++--- .../baomidou/dynamic/datasource/tx/TransactionContext.java | 5 ++--- 58 files changed, 116 insertions(+), 174 deletions(-) diff --git a/license.txt b/license.txt index 8470bb2..187e247 100644 --- a/license.txt +++ b/license.txt @@ -1,5 +1,5 @@ Copyright © ${project.inceptionYear} organization baomidou -
+
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
@@ -10,5 +10,4 @@ Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
-limitations under the License.
-
\ No newline at end of file
+limitations under the License.
\ No newline at end of file
diff --git a/src/main/java/com/baomidou/dynamic/datasource/DynamicRoutingDataSource.java b/src/main/java/com/baomidou/dynamic/datasource/DynamicRoutingDataSource.java
index 4df464f..1128677 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/DynamicRoutingDataSource.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/DynamicRoutingDataSource.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/annotation/DS.java b/src/main/java/com/baomidou/dynamic/datasource/annotation/DS.java
index f648027..0577064 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/annotation/DS.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/annotation/DS.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.annotation;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/annotation/DSTransactional.java b/src/main/java/com/baomidou/dynamic/datasource/annotation/DSTransactional.java
index fddb69e..5d2fec6 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/annotation/DSTransactional.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/annotation/DSTransactional.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.annotation;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/annotation/Master.java b/src/main/java/com/baomidou/dynamic/datasource/annotation/Master.java
index b87e069..1a3ae44 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/annotation/Master.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/annotation/Master.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.annotation;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/annotation/Slave.java b/src/main/java/com/baomidou/dynamic/datasource/annotation/Slave.java
index f5d725a..d5a893a 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/annotation/Slave.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/annotation/Slave.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.annotation;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationAdvisor.java b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationAdvisor.java
index e4f1737..50ae926 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationAdvisor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationAdvisor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.aop;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationInterceptor.java b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationInterceptor.java
index 0dae693..3c3443f 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationInterceptor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicDataSourceAnnotationInterceptor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.aop;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicLocalTransactionAdvisor.java b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicLocalTransactionAdvisor.java
index 2c4bb53..5c2be9e 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicLocalTransactionAdvisor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/aop/DynamicLocalTransactionAdvisor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.aop;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/BasicDataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/BasicDataSourceCreator.java
index 8f0f953..6094398 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/BasicDataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/BasicDataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/DataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/DataSourceCreator.java
index aa60f04..f80b827 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/DataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/DataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/DefaultDataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/DefaultDataSourceCreator.java
index 6496cb7..5254644 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/DefaultDataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/DefaultDataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/DruidDataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/DruidDataSourceCreator.java
index f1f7177..1a7ae74 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/DruidDataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/DruidDataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/HikariDataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/HikariDataSourceCreator.java
index 9e07b01..9a5810e 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/HikariDataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/HikariDataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/creator/JndiDataSourceCreator.java b/src/main/java/com/baomidou/dynamic/datasource/creator/JndiDataSourceCreator.java
index e176793..6567bc4 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/creator/JndiDataSourceCreator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/creator/JndiDataSourceCreator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.creator;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/ds/AbstractRoutingDataSource.java b/src/main/java/com/baomidou/dynamic/datasource/ds/AbstractRoutingDataSource.java
index 3e76ce8..f45d1c5 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/ds/AbstractRoutingDataSource.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/ds/AbstractRoutingDataSource.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.ds;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/ds/GroupDataSource.java b/src/main/java/com/baomidou/dynamic/datasource/ds/GroupDataSource.java
index f18ce69..9f8cc15 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/ds/GroupDataSource.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/ds/GroupDataSource.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.ds;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/ds/ItemDataSource.java b/src/main/java/com/baomidou/dynamic/datasource/ds/ItemDataSource.java
index 8cf48bb..671ec27 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/ds/ItemDataSource.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/ds/ItemDataSource.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.ds;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/enums/SeataMode.java b/src/main/java/com/baomidou/dynamic/datasource/enums/SeataMode.java
index 52826ea..554e710 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/enums/SeataMode.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/enums/SeataMode.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.enums;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/exception/CannotSelectDataSourceException.java b/src/main/java/com/baomidou/dynamic/datasource/exception/CannotSelectDataSourceException.java
index d03f3ab..0c26d27 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/exception/CannotSelectDataSourceException.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/exception/CannotSelectDataSourceException.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.exception;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/exception/ErrorCreateDataSourceException.java b/src/main/java/com/baomidou/dynamic/datasource/exception/ErrorCreateDataSourceException.java
index 2679e30..93f80d3 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/exception/ErrorCreateDataSourceException.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/exception/ErrorCreateDataSourceException.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.exception;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/plugin/MasterSlaveAutoRoutingPlugin.java b/src/main/java/com/baomidou/dynamic/datasource/plugin/MasterSlaveAutoRoutingPlugin.java
index 2dad3f0..16521bd 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/plugin/MasterSlaveAutoRoutingPlugin.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/plugin/MasterSlaveAutoRoutingPlugin.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.plugin;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/processor/DsHeaderProcessor.java b/src/main/java/com/baomidou/dynamic/datasource/processor/DsHeaderProcessor.java
index 31f02ed..9504916 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/processor/DsHeaderProcessor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/processor/DsHeaderProcessor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.processor;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/processor/DsProcessor.java b/src/main/java/com/baomidou/dynamic/datasource/processor/DsProcessor.java
index 73678ce..7b3bfdc 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/processor/DsProcessor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/processor/DsProcessor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.processor;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/processor/DsSessionProcessor.java b/src/main/java/com/baomidou/dynamic/datasource/processor/DsSessionProcessor.java
index ff71e48..d747b28 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/processor/DsSessionProcessor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/processor/DsSessionProcessor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.processor;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/processor/DsSpelExpressionProcessor.java b/src/main/java/com/baomidou/dynamic/datasource/processor/DsSpelExpressionProcessor.java
index 8d03c75..0e56193 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/processor/DsSpelExpressionProcessor.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/processor/DsSpelExpressionProcessor.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.processor;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractDataSourceProvider.java b/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractDataSourceProvider.java
index 03bd695..dff3c08 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractDataSourceProvider.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractDataSourceProvider.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.provider;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractJdbcDataSourceProvider.java b/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractJdbcDataSourceProvider.java
index 7195dad..38f0531 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractJdbcDataSourceProvider.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/provider/AbstractJdbcDataSourceProvider.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.provider;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/provider/DynamicDataSourceProvider.java b/src/main/java/com/baomidou/dynamic/datasource/provider/DynamicDataSourceProvider.java
index 6c49b5d..0fb1e61 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/provider/DynamicDataSourceProvider.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/provider/DynamicDataSourceProvider.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.provider;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/provider/YmlDynamicDataSourceProvider.java b/src/main/java/com/baomidou/dynamic/datasource/provider/YmlDynamicDataSourceProvider.java
index 42d543c..ceba742 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/provider/YmlDynamicDataSourceProvider.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/provider/YmlDynamicDataSourceProvider.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.provider;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DataSourceProperty.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DataSourceProperty.java
index 1fdd88b..67def47 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DataSourceProperty.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DataSourceProperty.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.java
index 31f1673..2e9aefe 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceCreatorAutoConfiguration.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceCreatorAutoConfiguration.java
index 80fdea1..eabbb41 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceCreatorAutoConfiguration.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceCreatorAutoConfiguration.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceHealthCheckConfiguration.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceHealthCheckConfiguration.java
index 1d3fd04..1178d93 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceHealthCheckConfiguration.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceHealthCheckConfiguration.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceProperties.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceProperties.java
index 34e9a2a..31bd16f 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceProperties.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceProperties.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConfig.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConfig.java
index e39529f..5bbb632 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConfig.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConfig.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConsts.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConsts.java
index 0adb90a..726ccf0 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConsts.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidConsts.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidDynamicDataSourceConfiguration.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidDynamicDataSourceConfiguration.java
index 50199e2..73a787d 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidDynamicDataSourceConfiguration.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidDynamicDataSourceConfiguration.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidSlf4jConfig.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidSlf4jConfig.java
index 31918e2..b219f57 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidSlf4jConfig.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidSlf4jConfig.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidStatConfig.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidStatConfig.java
index 699c3ef..7609c72 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidStatConfig.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidStatConfig.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfig.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfig.java
index 8a9ee8a..7de1eac 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfig.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfig.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfigUtil.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfigUtil.java
index 58326f0..d2ed940 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfigUtil.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/druid/DruidWallConfigUtil.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/hikari/HikariCpConfig.java b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/hikari/HikariCpConfig.java
index 23dcb9b..b65ba9a 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/hikari/HikariCpConfig.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/spring/boot/autoconfigure/hikari/HikariCpConfig.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.spring.boot.autoconfigure.hikari;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/strategy/DynamicDataSourceStrategy.java b/src/main/java/com/baomidou/dynamic/datasource/strategy/DynamicDataSourceStrategy.java
index fb081fd..377651c 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/strategy/DynamicDataSourceStrategy.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/strategy/DynamicDataSourceStrategy.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.strategy;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/strategy/LoadBalanceDynamicDataSourceStrategy.java b/src/main/java/com/baomidou/dynamic/datasource/strategy/LoadBalanceDynamicDataSourceStrategy.java
index febf7e4..e90ff4e 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/strategy/LoadBalanceDynamicDataSourceStrategy.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/strategy/LoadBalanceDynamicDataSourceStrategy.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.strategy;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/strategy/RandomDynamicDataSourceStrategy.java b/src/main/java/com/baomidou/dynamic/datasource/strategy/RandomDynamicDataSourceStrategy.java
index 0dffc96..915587d 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/strategy/RandomDynamicDataSourceStrategy.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/strategy/RandomDynamicDataSourceStrategy.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.strategy;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/support/DataSourceClassResolver.java b/src/main/java/com/baomidou/dynamic/datasource/support/DataSourceClassResolver.java
index 84afc34..ceb1450 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/support/DataSourceClassResolver.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/support/DataSourceClassResolver.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.support;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/support/DbHealthIndicator.java b/src/main/java/com/baomidou/dynamic/datasource/support/DbHealthIndicator.java
index e703c09..4c23cd1 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/support/DbHealthIndicator.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/support/DbHealthIndicator.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.support;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/support/DdConstants.java b/src/main/java/com/baomidou/dynamic/datasource/support/DdConstants.java
index 999fc5e..df7f438 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/support/DdConstants.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/support/DdConstants.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.support;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/support/HealthCheckAdapter.java b/src/main/java/com/baomidou/dynamic/datasource/support/HealthCheckAdapter.java
index 750fddc..5399fc2 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/support/HealthCheckAdapter.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/support/HealthCheckAdapter.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.support;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/support/ScriptRunner.java b/src/main/java/com/baomidou/dynamic/datasource/support/ScriptRunner.java
index 07bebf1..302fb03 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/support/ScriptRunner.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/support/ScriptRunner.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.support;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/toolkit/Base64.java b/src/main/java/com/baomidou/dynamic/datasource/toolkit/Base64.java
index 4f5b93f..55e39b7 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/toolkit/Base64.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/toolkit/Base64.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.toolkit;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/toolkit/CryptoUtils.java b/src/main/java/com/baomidou/dynamic/datasource/toolkit/CryptoUtils.java
index 12fa872..e743e05 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/toolkit/CryptoUtils.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/toolkit/CryptoUtils.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.toolkit;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/toolkit/DynamicDataSourceContextHolder.java b/src/main/java/com/baomidou/dynamic/datasource/toolkit/DynamicDataSourceContextHolder.java
index 7564fd5..7766113 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/toolkit/DynamicDataSourceContextHolder.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/toolkit/DynamicDataSourceContextHolder.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.toolkit;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/toolkit/StringUtils.java b/src/main/java/com/baomidou/dynamic/datasource/toolkit/StringUtils.java
index 6fb4bbf..25cca49 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/toolkit/StringUtils.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/toolkit/StringUtils.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.toolkit;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionFactory.java b/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionFactory.java
index 8905ca6..181d2f5 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionFactory.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionFactory.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.tx;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionProxy.java b/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionProxy.java
index 498afff..b23a54e 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionProxy.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/tx/ConnectionProxy.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.tx;
 
diff --git a/src/main/java/com/baomidou/dynamic/datasource/tx/TransactionContext.java b/src/main/java/com/baomidou/dynamic/datasource/tx/TransactionContext.java
index 99b712a..ed970aa 100644
--- a/src/main/java/com/baomidou/dynamic/datasource/tx/TransactionContext.java
+++ b/src/main/java/com/baomidou/dynamic/datasource/tx/TransactionContext.java
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright © 2018 organization baomidou
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -12,7 +12,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
  */
 package com.baomidou.dynamic.datasource.tx;