From f585f4a448956de880fee0bddd952e651b788522 Mon Sep 17 00:00:00 2001 From: "chen.ma" Date: Sun, 8 May 2022 16:50:35 +0800 Subject: [PATCH] Change the path of starter basic package --- .../starter/common/ConfigFileTypeEnum.java | 2 +- .../config/BootstrapCoreProperties.java | 6 ++--- ...ynamicThreadPoolCoreAutoConfiguration.java | 20 ++++++++-------- .../starter/config/ExecutorProperties.java | 2 +- .../config/NotifyPlatformProperties.java | 2 +- .../config/WebThreadPoolProperties.java | 2 +- .../AbstractDynamicThreadPoolMonitor.java | 2 +- .../monitor/DynamicThreadPoolMonitor.java | 2 +- .../DynamicThreadPoolMonitorExecutor.java | 4 ++-- .../starter/monitor/LogMonitorHandler.java | 2 +- .../starter/monitor/MetricMonitorHandler.java | 2 +- .../starter/monitor/ThreadPoolMonitor.java | 2 +- .../notify/CoreNotifyConfigBuilder.java | 8 +++---- .../starter/parser/AbstractConfigParser.java | 2 +- .../starter/parser/ConfigFileTypeEnum.java | 2 +- .../boot}/starter/parser/ConfigParser.java | 2 +- .../starter/parser/ConfigParserHandler.java | 2 +- .../parser/PropertiesConfigParser.java | 2 +- .../starter/parser/YamlConfigParser.java | 2 +- .../AbstractCoreThreadPoolDynamicRefresh.java | 14 +++++------ .../refresher/ApolloRefresherHandler.java | 4 ++-- .../BootstrapCorePropertiesBinderAdapt.java | 10 ++++---- .../refresher/NacosCloudRefresherHandler.java | 4 ++-- .../refresher/NacosRefresherHandler.java | 4 ++-- .../refresher/ZookeeperRefresherHandler.java | 4 ++-- .../DynamicThreadPoolPostProcessor.java | 6 ++--- .../support/GlobalCoreThreadPoolManage.java | 4 ++-- .../main/resources/META-INF/spring.factories | 2 +- .../starter/config/BootstrapProperties.java | 2 +- .../config/DiscoveryConfiguration.java | 13 +++++------ .../DynamicThreadPoolAutoConfiguration.java | 23 ++++++++++--------- .../config/HttpClientConfiguration.java | 8 +++---- .../config/MessageNotifyConfiguration.java | 8 +++---- .../controller/PoolRunStateController.java | 2 +- .../controller/WebThreadPoolController.java | 2 +- .../core/BaseThreadDetailStateHandler.java | 2 +- .../starter/core/CacheData.java | 4 ++-- .../starter/core/ClientWorker.java | 6 ++--- .../starter/core/ConfigEmptyAnalyzer.java | 2 +- .../starter/core/ConfigService.java | 2 +- .../starter/core/DiscoveryClient.java | 4 ++-- .../core/DynamicThreadPoolPostProcessor.java | 6 ++--- .../starter/core/Listener.java | 2 +- .../core/ServerThreadPoolDynamicRefresh.java | 2 +- .../core/ShutdownExecuteException.java | 2 +- .../starter/core/ThreadPoolConfigService.java | 8 +++---- .../starter/core/ThreadPoolOperation.java | 4 ++-- .../core/ThreadPoolSubscribeCallback.java | 2 +- .../event/ApplicationCompleteEvent.java | 2 +- .../ApplicationContentPostProcessor.java | 2 +- .../starter/event/MonitorEventExecutor.java | 2 +- .../monitor/ReportingEventExecutor.java | 10 ++++---- .../starter/monitor/collect/Collector.java | 2 +- .../monitor/collect/RunTimeInfoCollector.java | 4 ++-- .../monitor/send/HttpConnectSender.java | 4 ++-- .../starter/monitor/send/MessageSender.java | 2 +- .../notify/ServerNotifyConfigBuilder.java | 6 ++--- .../starter/remote/AbstractHealthCheck.java | 6 ++--- .../starter/remote/HttpAgent.java | 2 +- .../remote/HttpScheduledHealthCheck.java | 2 +- .../starter/remote/ServerHealthCheck.java | 2 +- .../starter/remote/ServerHttpAgent.java | 8 +++---- .../starter/remote/ServerListManager.java | 4 ++-- .../starter/security/SecurityProxy.java | 6 ++--- .../starter/toolkit/CloudCommonIdUtil.java | 2 +- .../starter/toolkit/HttpClientUtil.java | 2 +- .../wrapper/ManagerListenerWrapper.java | 4 ++-- .../main/resources/META-INF/spring.factories | 4 ++-- 68 files changed, 150 insertions(+), 150 deletions(-) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/common/ConfigFileTypeEnum.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/config/BootstrapCoreProperties.java (94%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/config/DynamicThreadPoolCoreAutoConfiguration.java (90%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/config/ExecutorProperties.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/config/NotifyPlatformProperties.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/config/WebThreadPoolProperties.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/AbstractDynamicThreadPoolMonitor.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/DynamicThreadPoolMonitor.java (94%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/DynamicThreadPoolMonitorExecutor.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/LogMonitorHandler.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/MetricMonitorHandler.java (98%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/monitor/ThreadPoolMonitor.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/notify/CoreNotifyConfigBuilder.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/AbstractConfigParser.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/ConfigFileTypeEnum.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/ConfigParser.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/ConfigParserHandler.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/PropertiesConfigParser.java (96%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/parser/YamlConfigParser.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/ApolloRefresherHandler.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/BootstrapCorePropertiesBinderAdapt.java (95%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/NacosCloudRefresherHandler.java (94%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/NacosRefresherHandler.java (94%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/refresher/ZookeeperRefresherHandler.java (97%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/support/DynamicThreadPoolPostProcessor.java (98%) rename hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/{ => spring/boot}/starter/support/GlobalCoreThreadPoolManage.java (93%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/config/BootstrapProperties.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/config/DiscoveryConfiguration.java (87%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/config/DynamicThreadPoolAutoConfiguration.java (88%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/config/HttpClientConfiguration.java (92%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/config/MessageNotifyConfiguration.java (92%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/controller/PoolRunStateController.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/controller/WebThreadPoolController.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/BaseThreadDetailStateHandler.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/CacheData.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ClientWorker.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ConfigEmptyAnalyzer.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ConfigService.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/DiscoveryClient.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/DynamicThreadPoolPostProcessor.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/Listener.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ServerThreadPoolDynamicRefresh.java (99%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ShutdownExecuteException.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ThreadPoolConfigService.java (89%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ThreadPoolOperation.java (94%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/core/ThreadPoolSubscribeCallback.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/event/ApplicationCompleteEvent.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/event/ApplicationContentPostProcessor.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/event/MonitorEventExecutor.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/monitor/ReportingEventExecutor.java (94%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/monitor/collect/Collector.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/monitor/collect/RunTimeInfoCollector.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/monitor/send/HttpConnectSender.java (93%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/monitor/send/MessageSender.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/notify/ServerNotifyConfigBuilder.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/AbstractHealthCheck.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/HttpAgent.java (98%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/HttpScheduledHealthCheck.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/ServerHealthCheck.java (96%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/ServerHttpAgent.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/remote/ServerListManager.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/security/SecurityProxy.java (95%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/toolkit/CloudCommonIdUtil.java (97%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/toolkit/HttpClientUtil.java (99%) rename hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/{ => springboot}/starter/wrapper/ManagerListenerWrapper.java (92%) diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/common/ConfigFileTypeEnum.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/common/ConfigFileTypeEnum.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/common/ConfigFileTypeEnum.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/common/ConfigFileTypeEnum.java index 66f969ff..234f9406 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/common/ConfigFileTypeEnum.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/common/ConfigFileTypeEnum.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.common; +package cn.hippo4j.core.spring.boot.starter.common; /** * Config file type enum. diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/BootstrapCoreProperties.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/BootstrapCoreProperties.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/BootstrapCoreProperties.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/BootstrapCoreProperties.java index f877dfab..41f64c54 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/BootstrapCoreProperties.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/BootstrapCoreProperties.java @@ -15,11 +15,11 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.config; +package cn.hippo4j.core.spring.boot.starter.config; import cn.hippo4j.core.config.BootstrapPropertiesInterface; -import cn.hippo4j.core.starter.monitor.DynamicThreadPoolMonitor; -import cn.hippo4j.core.starter.parser.ConfigFileTypeEnum; +import cn.hippo4j.core.spring.boot.starter.monitor.DynamicThreadPoolMonitor; +import cn.hippo4j.core.spring.boot.starter.parser.ConfigFileTypeEnum; import lombok.Getter; import lombok.Setter; import org.springframework.boot.context.properties.ConfigurationProperties; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/DynamicThreadPoolCoreAutoConfiguration.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/DynamicThreadPoolCoreAutoConfiguration.java similarity index 90% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/DynamicThreadPoolCoreAutoConfiguration.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/DynamicThreadPoolCoreAutoConfiguration.java index 4c6280a6..c632a05f 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/DynamicThreadPoolCoreAutoConfiguration.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/DynamicThreadPoolCoreAutoConfiguration.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.config; +package cn.hippo4j.core.spring.boot.starter.config; import cn.hippo4j.common.api.NotifyConfigBuilder; import cn.hippo4j.common.config.ApplicationContextHolder; @@ -31,15 +31,15 @@ import cn.hippo4j.core.config.WebThreadPoolConfiguration; import cn.hippo4j.core.enable.MarkerConfiguration; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; import cn.hippo4j.core.executor.state.ThreadPoolRunStateHandler; -import cn.hippo4j.core.starter.monitor.DynamicThreadPoolMonitorExecutor; -import cn.hippo4j.core.starter.monitor.LogMonitorHandler; -import cn.hippo4j.core.starter.monitor.MetricMonitorHandler; -import cn.hippo4j.core.starter.notify.CoreNotifyConfigBuilder; -import cn.hippo4j.core.starter.refresher.ApolloRefresherHandler; -import cn.hippo4j.core.starter.refresher.NacosCloudRefresherHandler; -import cn.hippo4j.core.starter.refresher.NacosRefresherHandler; -import cn.hippo4j.core.starter.refresher.ZookeeperRefresherHandler; -import cn.hippo4j.core.starter.support.DynamicThreadPoolPostProcessor; +import cn.hippo4j.core.spring.boot.starter.monitor.DynamicThreadPoolMonitorExecutor; +import cn.hippo4j.core.spring.boot.starter.monitor.LogMonitorHandler; +import cn.hippo4j.core.spring.boot.starter.monitor.MetricMonitorHandler; +import cn.hippo4j.core.spring.boot.starter.refresher.ApolloRefresherHandler; +import cn.hippo4j.core.spring.boot.starter.refresher.NacosCloudRefresherHandler; +import cn.hippo4j.core.spring.boot.starter.refresher.NacosRefresherHandler; +import cn.hippo4j.core.spring.boot.starter.support.DynamicThreadPoolPostProcessor; +import cn.hippo4j.core.spring.boot.starter.notify.CoreNotifyConfigBuilder; +import cn.hippo4j.core.spring.boot.starter.refresher.ZookeeperRefresherHandler; import lombok.AllArgsConstructor; import org.springframework.boot.autoconfigure.ImportAutoConfiguration; import org.springframework.boot.autoconfigure.condition.*; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/ExecutorProperties.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/ExecutorProperties.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/ExecutorProperties.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/ExecutorProperties.java index 72b1786f..c2f4ae2c 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/ExecutorProperties.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/ExecutorProperties.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.config; +package cn.hippo4j.core.spring.boot.starter.config; import cn.hippo4j.common.notify.ThreadPoolNotifyAlarm; import com.google.common.collect.Maps; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/NotifyPlatformProperties.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/NotifyPlatformProperties.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/NotifyPlatformProperties.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/NotifyPlatformProperties.java index 771755cf..71980140 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/NotifyPlatformProperties.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/NotifyPlatformProperties.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.config; +package cn.hippo4j.core.spring.boot.starter.config; import lombok.Data; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/WebThreadPoolProperties.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/WebThreadPoolProperties.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/WebThreadPoolProperties.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/WebThreadPoolProperties.java index 3d499836..9def493b 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/config/WebThreadPoolProperties.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/config/WebThreadPoolProperties.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.config; +package cn.hippo4j.core.spring.boot.starter.config; import lombok.Data; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/AbstractDynamicThreadPoolMonitor.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/AbstractDynamicThreadPoolMonitor.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/AbstractDynamicThreadPoolMonitor.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/AbstractDynamicThreadPoolMonitor.java index 0b2890da..01c4f82b 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/AbstractDynamicThreadPoolMonitor.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/AbstractDynamicThreadPoolMonitor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; import cn.hippo4j.common.model.PoolRunStateInfo; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitor.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitor.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitor.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitor.java index 2b0321c4..c3a5c024 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitor.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; /** * Dynamic thread-pool monitor. diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitorExecutor.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitorExecutor.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitorExecutor.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitorExecutor.java index 7adbfece..864a9e03 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/DynamicThreadPoolMonitorExecutor.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/DynamicThreadPoolMonitorExecutor.java @@ -15,13 +15,13 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.toolkit.StringUtil; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import cn.hippo4j.core.spi.DynamicThreadPoolServiceLoader; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; import com.google.common.collect.Lists; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/LogMonitorHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/LogMonitorHandler.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/LogMonitorHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/LogMonitorHandler.java index 6036e64f..1720bc24 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/LogMonitorHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/LogMonitorHandler.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; import cn.hippo4j.common.model.PoolRunStateInfo; import cn.hippo4j.common.toolkit.JSONUtil; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/MetricMonitorHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/MetricMonitorHandler.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/MetricMonitorHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/MetricMonitorHandler.java index ea4cc695..1a734c5f 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/MetricMonitorHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/MetricMonitorHandler.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.model.PoolRunStateInfo; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/ThreadPoolMonitor.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/ThreadPoolMonitor.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/ThreadPoolMonitor.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/ThreadPoolMonitor.java index 47a898e1..b4d6e2c0 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/monitor/ThreadPoolMonitor.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/monitor/ThreadPoolMonitor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.monitor; +package cn.hippo4j.core.spring.boot.starter.monitor; /** * Thread-pool monitor. diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/notify/CoreNotifyConfigBuilder.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/notify/CoreNotifyConfigBuilder.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/notify/CoreNotifyConfigBuilder.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/notify/CoreNotifyConfigBuilder.java index 5051bd5a..3bd8019c 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/notify/CoreNotifyConfigBuilder.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/notify/CoreNotifyConfigBuilder.java @@ -15,15 +15,15 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.notify; +package cn.hippo4j.core.spring.boot.starter.notify; import cn.hippo4j.common.api.NotifyConfigBuilder; import cn.hippo4j.common.notify.AlarmControlHandler; import cn.hippo4j.common.notify.NotifyConfigDTO; import cn.hippo4j.common.toolkit.StringUtil; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; -import cn.hippo4j.core.starter.config.ExecutorProperties; -import cn.hippo4j.core.starter.config.NotifyPlatformProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.ExecutorProperties; +import cn.hippo4j.core.spring.boot.starter.config.NotifyPlatformProperties; import cn.hutool.core.util.StrUtil; import com.google.common.collect.Lists; import com.google.common.collect.Maps; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/AbstractConfigParser.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/AbstractConfigParser.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/AbstractConfigParser.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/AbstractConfigParser.java index 9b52afd4..aac274b7 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/AbstractConfigParser.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/AbstractConfigParser.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; /** * @author : wh diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigFileTypeEnum.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigFileTypeEnum.java index 1cef19f3..b0cbe46b 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigFileTypeEnum.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; import lombok.Getter; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParser.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParser.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParser.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParser.java index f09019ad..46f3b9e2 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParser.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParser.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; import java.io.IOException; import java.util.List; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParserHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParserHandler.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParserHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParserHandler.java index 7f300d10..09ebf9c1 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigParserHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/ConfigParserHandler.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; import com.google.common.collect.Lists; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/PropertiesConfigParser.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/PropertiesConfigParser.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/PropertiesConfigParser.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/PropertiesConfigParser.java index d052d38e..9751fcd7 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/PropertiesConfigParser.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/PropertiesConfigParser.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; import com.google.common.collect.Lists; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/YamlConfigParser.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/YamlConfigParser.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/YamlConfigParser.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/YamlConfigParser.java index ed36b20b..8a6bbbea 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/YamlConfigParser.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/parser/YamlConfigParser.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.parser; +package cn.hippo4j.core.spring.boot.starter.parser; import com.google.common.collect.Lists; import com.google.common.collect.Maps; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java index eea9968b..192d8c4d 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/AbstractCoreThreadPoolDynamicRefresh.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.common.api.ThreadPoolDynamicRefresh; import cn.hippo4j.common.config.ApplicationContextHolder; @@ -34,12 +34,12 @@ import cn.hippo4j.core.executor.manage.GlobalNotifyAlarmManage; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; import cn.hippo4j.core.executor.support.*; import cn.hippo4j.core.proxy.RejectedProxyUtil; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; -import cn.hippo4j.core.starter.config.ExecutorProperties; -import cn.hippo4j.core.starter.config.WebThreadPoolProperties; -import cn.hippo4j.core.starter.notify.CoreNotifyConfigBuilder; -import cn.hippo4j.core.starter.parser.ConfigParserHandler; -import cn.hippo4j.core.starter.support.GlobalCoreThreadPoolManage; +import cn.hippo4j.core.spring.boot.starter.config.WebThreadPoolProperties; +import cn.hippo4j.core.spring.boot.starter.support.GlobalCoreThreadPoolManage; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.ExecutorProperties; +import cn.hippo4j.core.spring.boot.starter.notify.CoreNotifyConfigBuilder; +import cn.hippo4j.core.spring.boot.starter.parser.ConfigParserHandler; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.InitializingBean; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ApolloRefresherHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ApolloRefresherHandler.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ApolloRefresherHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ApolloRefresherHandler.java index 8acafd67..5f8ef7e9 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ApolloRefresherHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ApolloRefresherHandler.java @@ -15,10 +15,10 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; import com.ctrip.framework.apollo.Config; import com.ctrip.framework.apollo.ConfigChangeListener; import com.ctrip.framework.apollo.ConfigFile; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/BootstrapCorePropertiesBinderAdapt.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/BootstrapCorePropertiesBinderAdapt.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/BootstrapCorePropertiesBinderAdapt.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/BootstrapCorePropertiesBinderAdapt.java index 2dcb433a..c8e4255e 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/BootstrapCorePropertiesBinderAdapt.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/BootstrapCorePropertiesBinderAdapt.java @@ -15,15 +15,15 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.common.notify.NotifyPlatformEnum; import cn.hippo4j.common.notify.ThreadPoolNotifyAlarm; import cn.hippo4j.common.toolkit.CollectionUtil; import cn.hippo4j.common.toolkit.StringUtil; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; -import cn.hippo4j.core.starter.config.ExecutorProperties; -import cn.hippo4j.core.starter.config.NotifyPlatformProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.ExecutorProperties; +import cn.hippo4j.core.spring.boot.starter.config.NotifyPlatformProperties; import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.bean.copier.CopyOptions; import com.google.common.collect.Lists; @@ -36,7 +36,7 @@ import org.springframework.boot.context.properties.source.MapConfigurationProper import java.util.List; import java.util.Map; -import static cn.hippo4j.core.starter.config.BootstrapCoreProperties.PREFIX; +import static cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties.PREFIX; /** * Bootstrap core properties binder adapt. diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosCloudRefresherHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosCloudRefresherHandler.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosCloudRefresherHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosCloudRefresherHandler.java index 7eb13d83..775653ad 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosCloudRefresherHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosCloudRefresherHandler.java @@ -15,11 +15,11 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; import com.alibaba.cloud.nacos.NacosConfigManager; import com.alibaba.nacos.api.config.listener.Listener; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosRefresherHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosRefresherHandler.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosRefresherHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosRefresherHandler.java index 6d240233..5ca0d80d 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/NacosRefresherHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/NacosRefresherHandler.java @@ -15,11 +15,11 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; import com.alibaba.nacos.api.config.ConfigService; import com.alibaba.nacos.api.config.listener.Listener; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ZookeeperRefresherHandler.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ZookeeperRefresherHandler.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ZookeeperRefresherHandler.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ZookeeperRefresherHandler.java index 83f8e1ec..8599ba8e 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/refresher/ZookeeperRefresherHandler.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/refresher/ZookeeperRefresherHandler.java @@ -15,10 +15,10 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.refresher; +package cn.hippo4j.core.spring.boot.starter.refresher; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; import com.google.common.base.Charsets; import lombok.extern.slf4j.Slf4j; import org.apache.curator.framework.CuratorFramework; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/DynamicThreadPoolPostProcessor.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/DynamicThreadPoolPostProcessor.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/DynamicThreadPoolPostProcessor.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/DynamicThreadPoolPostProcessor.java index 120371e1..30578b0e 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/DynamicThreadPoolPostProcessor.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/DynamicThreadPoolPostProcessor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.support; +package cn.hippo4j.core.spring.boot.starter.support; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.notify.ThreadPoolNotifyAlarm; @@ -26,8 +26,8 @@ import cn.hippo4j.core.executor.DynamicThreadPoolWrapper; import cn.hippo4j.core.executor.manage.GlobalNotifyAlarmManage; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; import cn.hippo4j.core.executor.support.*; -import cn.hippo4j.core.starter.config.BootstrapCoreProperties; -import cn.hippo4j.core.starter.config.ExecutorProperties; +import cn.hippo4j.core.spring.boot.starter.config.BootstrapCoreProperties; +import cn.hippo4j.core.spring.boot.starter.config.ExecutorProperties; import cn.hippo4j.core.toolkit.inet.DynamicThreadPoolAnnotationUtil; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/GlobalCoreThreadPoolManage.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/GlobalCoreThreadPoolManage.java similarity index 93% rename from hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/GlobalCoreThreadPoolManage.java rename to hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/GlobalCoreThreadPoolManage.java index 21a384d5..1eff4ac1 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/support/GlobalCoreThreadPoolManage.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/spring/boot/starter/support/GlobalCoreThreadPoolManage.java @@ -15,9 +15,9 @@ * limitations under the License. */ -package cn.hippo4j.core.starter.support; +package cn.hippo4j.core.spring.boot.starter.support; -import cn.hippo4j.core.starter.config.ExecutorProperties; +import cn.hippo4j.core.spring.boot.starter.config.ExecutorProperties; import com.google.common.collect.Maps; import java.util.Map; diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/resources/META-INF/spring.factories b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/resources/META-INF/spring.factories index 6b409eb7..8052379a 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/resources/META-INF/spring.factories +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/resources/META-INF/spring.factories @@ -1 +1 @@ -org.springframework.boot.autoconfigure.EnableAutoConfiguration=cn.hippo4j.core.starter.config.DynamicThreadPoolCoreAutoConfiguration +org.springframework.boot.autoconfigure.EnableAutoConfiguration=cn.hippo4j.core.spring.boot.starter.config.DynamicThreadPoolCoreAutoConfiguration diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/BootstrapProperties.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/BootstrapProperties.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/BootstrapProperties.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/BootstrapProperties.java index 61c39c0a..1f0d1b74 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/BootstrapProperties.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/BootstrapProperties.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.config; +package cn.hippo4j.springboot.starter.config; import cn.hippo4j.core.config.BootstrapPropertiesInterface; import lombok.Getter; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DiscoveryConfiguration.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DiscoveryConfiguration.java similarity index 87% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DiscoveryConfiguration.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DiscoveryConfiguration.java index 42a3c0ea..87036045 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DiscoveryConfiguration.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DiscoveryConfiguration.java @@ -15,14 +15,15 @@ * limitations under the License. */ -package cn.hippo4j.starter.config; +package cn.hippo4j.springboot.starter.config; import cn.hippo4j.common.model.InstanceInfo; import cn.hippo4j.common.toolkit.ContentUtil; import cn.hippo4j.core.toolkit.IdentifyUtil; import cn.hippo4j.core.toolkit.inet.InetUtils; -import cn.hippo4j.starter.core.DiscoveryClient; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.toolkit.CloudCommonIdUtil; +import cn.hippo4j.springboot.starter.core.DiscoveryClient; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import cn.hutool.core.text.StrBuilder; import lombok.AllArgsConstructor; import lombok.SneakyThrows; @@ -32,8 +33,6 @@ import org.springframework.core.env.ConfigurableEnvironment; import java.net.InetAddress; import static cn.hippo4j.core.toolkit.IdentifyUtil.CLIENT_IDENTIFICATION_VALUE; -import static cn.hippo4j.starter.toolkit.CloudCommonIdUtil.getDefaultInstanceId; -import static cn.hippo4j.starter.toolkit.CloudCommonIdUtil.getIpApplicationName; /** * Dynamic threadPool discovery config. @@ -60,12 +59,12 @@ public class DiscoveryConfiguration { String active = environment.getProperty("spring.profiles.active", "UNKNOWN"); InstanceInfo instanceInfo = new InstanceInfo(); - String instanceId = getDefaultInstanceId(environment, hippo4JInetUtils); + String instanceId = CloudCommonIdUtil.getDefaultInstanceId(environment, hippo4JInetUtils); instanceId = StrBuilder.create().append(instanceId).append(":").append(CLIENT_IDENTIFICATION_VALUE).toString(); String contextPath = environment.getProperty("server.servlet.context-path", ""); instanceInfo.setInstanceId(instanceId) - .setIpApplicationName(getIpApplicationName(environment, hippo4JInetUtils)) + .setIpApplicationName(CloudCommonIdUtil.getIpApplicationName(environment, hippo4JInetUtils)) .setHostName(InetAddress.getLocalHost().getHostAddress()) .setAppName(applicationName) .setPort(port) diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DynamicThreadPoolAutoConfiguration.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DynamicThreadPoolAutoConfiguration.java similarity index 88% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DynamicThreadPoolAutoConfiguration.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DynamicThreadPoolAutoConfiguration.java index 6e4c5cc2..3ac06272 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/DynamicThreadPoolAutoConfiguration.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/DynamicThreadPoolAutoConfiguration.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.config; +package cn.hippo4j.springboot.starter.config; import cn.hippo4j.common.api.ThreadDetailState; import cn.hippo4j.common.config.ApplicationContextHolder; @@ -27,17 +27,18 @@ import cn.hippo4j.core.executor.web.WebThreadPoolHandlerChoose; import cn.hippo4j.core.handler.DynamicThreadPoolBannerHandler; import cn.hippo4j.core.toolkit.IdentifyUtil; import cn.hippo4j.core.toolkit.inet.InetUtils; -import cn.hippo4j.starter.controller.PoolRunStateController; -import cn.hippo4j.starter.controller.WebThreadPoolController; +import cn.hippo4j.springboot.starter.core.*; +import cn.hippo4j.springboot.starter.event.ApplicationContentPostProcessor; +import cn.hippo4j.springboot.starter.monitor.collect.RunTimeInfoCollector; +import cn.hippo4j.springboot.starter.controller.PoolRunStateController; +import cn.hippo4j.springboot.starter.controller.WebThreadPoolController; import cn.hippo4j.starter.core.*; -import cn.hippo4j.starter.event.ApplicationContentPostProcessor; -import cn.hippo4j.starter.monitor.ReportingEventExecutor; -import cn.hippo4j.starter.monitor.collect.RunTimeInfoCollector; -import cn.hippo4j.starter.monitor.send.HttpConnectSender; -import cn.hippo4j.starter.monitor.send.MessageSender; -import cn.hippo4j.starter.remote.HttpAgent; -import cn.hippo4j.starter.remote.HttpScheduledHealthCheck; -import cn.hippo4j.starter.remote.ServerHealthCheck; +import cn.hippo4j.springboot.starter.monitor.ReportingEventExecutor; +import cn.hippo4j.springboot.starter.monitor.send.HttpConnectSender; +import cn.hippo4j.springboot.starter.monitor.send.MessageSender; +import cn.hippo4j.springboot.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.HttpScheduledHealthCheck; +import cn.hippo4j.springboot.starter.remote.ServerHealthCheck; import lombok.AllArgsConstructor; import org.springframework.boot.autoconfigure.ImportAutoConfiguration; import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/HttpClientConfiguration.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/HttpClientConfiguration.java similarity index 92% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/HttpClientConfiguration.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/HttpClientConfiguration.java index c06e0d8d..690680c5 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/HttpClientConfiguration.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/HttpClientConfiguration.java @@ -15,11 +15,11 @@ * limitations under the License. */ -package cn.hippo4j.starter.config; +package cn.hippo4j.springboot.starter.config; -import cn.hippo4j.starter.remote.HttpAgent; -import cn.hippo4j.starter.remote.ServerHttpAgent; -import cn.hippo4j.starter.toolkit.HttpClientUtil; +import cn.hippo4j.springboot.starter.toolkit.HttpClientUtil; +import cn.hippo4j.springboot.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.ServerHttpAgent; import lombok.SneakyThrows; import okhttp3.OkHttpClient; import org.springframework.context.annotation.Bean; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/MessageNotifyConfiguration.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/MessageNotifyConfiguration.java similarity index 92% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/MessageNotifyConfiguration.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/MessageNotifyConfiguration.java index 75145ce1..3d30e364 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/config/MessageNotifyConfiguration.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/config/MessageNotifyConfiguration.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.config; +package cn.hippo4j.springboot.starter.config; import cn.hippo4j.common.api.NotifyConfigBuilder; import cn.hippo4j.common.notify.*; @@ -23,9 +23,9 @@ import cn.hippo4j.common.notify.platform.DingSendMessageHandler; import cn.hippo4j.common.notify.platform.LarkSendMessageHandler; import cn.hippo4j.common.notify.platform.WeChatSendMessageHandler; import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler; -import cn.hippo4j.starter.core.ServerThreadPoolDynamicRefresh; -import cn.hippo4j.starter.notify.ServerNotifyConfigBuilder; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.core.ServerThreadPoolDynamicRefresh; +import cn.hippo4j.springboot.starter.notify.ServerNotifyConfigBuilder; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import lombok.AllArgsConstructor; import org.springframework.context.annotation.Bean; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/PoolRunStateController.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/PoolRunStateController.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/PoolRunStateController.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/PoolRunStateController.java index 1198713a..a1c1a0c1 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/PoolRunStateController.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/PoolRunStateController.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.controller; +package cn.hippo4j.springboot.starter.controller; import cn.hippo4j.common.api.ThreadDetailState; import cn.hippo4j.common.model.PoolRunStateInfo; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/WebThreadPoolController.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/WebThreadPoolController.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/WebThreadPoolController.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/WebThreadPoolController.java index 08025f7d..6ab6437c 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/controller/WebThreadPoolController.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/controller/WebThreadPoolController.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.controller; +package cn.hippo4j.springboot.starter.controller; import cn.hippo4j.common.model.PoolBaseInfo; import cn.hippo4j.common.model.PoolParameterInfo; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/BaseThreadDetailStateHandler.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/BaseThreadDetailStateHandler.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/BaseThreadDetailStateHandler.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/BaseThreadDetailStateHandler.java index 2d02650f..303cedf0 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/BaseThreadDetailStateHandler.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/BaseThreadDetailStateHandler.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.common.api.ThreadDetailState; import cn.hippo4j.common.model.ThreadDetailStateInfo; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/CacheData.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/CacheData.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/CacheData.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/CacheData.java index 2f58dd55..48b7e867 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/CacheData.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/CacheData.java @@ -15,10 +15,10 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; -import cn.hippo4j.starter.wrapper.ManagerListenerWrapper; +import cn.hippo4j.springboot.starter.wrapper.ManagerListenerWrapper; import cn.hippo4j.common.toolkit.ContentUtil; import cn.hippo4j.common.toolkit.Md5Util; import cn.hippo4j.common.constant.Constants; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ClientWorker.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ClientWorker.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ClientWorker.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ClientWorker.java index 383bd402..e7821fb7 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ClientWorker.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ClientWorker.java @@ -15,15 +15,15 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.common.model.PoolParameterInfo; import cn.hippo4j.common.toolkit.ContentUtil; import cn.hippo4j.common.toolkit.GroupKey; import cn.hippo4j.common.toolkit.JSONUtil; import cn.hippo4j.common.web.base.Result; -import cn.hippo4j.starter.remote.HttpAgent; -import cn.hippo4j.starter.remote.ServerHealthCheck; +import cn.hippo4j.springboot.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.ServerHealthCheck; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import cn.hutool.core.util.IdUtil; import lombok.SneakyThrows; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigEmptyAnalyzer.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigEmptyAnalyzer.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigEmptyAnalyzer.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigEmptyAnalyzer.java index 8f84e754..fdc5dd9b 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigEmptyAnalyzer.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigEmptyAnalyzer.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.core.config.ConfigEmptyException; import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigService.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigService.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigService.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigService.java index 8e0a45d7..6975ced1 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ConfigService.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ConfigService.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; /** * Config service. diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DiscoveryClient.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DiscoveryClient.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DiscoveryClient.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DiscoveryClient.java index 4bbf1927..165dc0a8 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DiscoveryClient.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DiscoveryClient.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.common.api.ClientCloseHookExecute; import cn.hippo4j.common.constant.Constants; @@ -23,7 +23,7 @@ import cn.hippo4j.common.model.InstanceInfo; import cn.hippo4j.common.web.base.Result; import cn.hippo4j.common.web.base.Results; import cn.hippo4j.common.web.exception.ErrorCodeEnum; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import cn.hutool.core.text.StrBuilder; import cn.hutool.core.util.StrUtil; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DynamicThreadPoolPostProcessor.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DynamicThreadPoolPostProcessor.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java index 3a5944dd..a0304600 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/DynamicThreadPoolPostProcessor.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.constant.Constants; @@ -31,8 +31,8 @@ import cn.hippo4j.core.executor.manage.GlobalNotifyAlarmManage; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; import cn.hippo4j.core.executor.support.*; import cn.hippo4j.core.toolkit.inet.DynamicThreadPoolAnnotationUtil; -import cn.hippo4j.starter.config.BootstrapProperties; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import cn.hutool.core.util.BooleanUtil; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/Listener.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/Listener.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/Listener.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/Listener.java index 41f39000..5c75e22a 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/Listener.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/Listener.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import java.util.concurrent.Executor; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ServerThreadPoolDynamicRefresh.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ServerThreadPoolDynamicRefresh.java similarity index 99% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ServerThreadPoolDynamicRefresh.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ServerThreadPoolDynamicRefresh.java index 326dcf75..9b4bcca7 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ServerThreadPoolDynamicRefresh.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ServerThreadPoolDynamicRefresh.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; import cn.hippo4j.common.enums.EnableEnum; import cn.hippo4j.common.model.PoolParameter; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ShutdownExecuteException.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ShutdownExecuteException.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ShutdownExecuteException.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ShutdownExecuteException.java index 6daca171..82c523c8 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ShutdownExecuteException.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ShutdownExecuteException.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; /** * Shutdown execute exception. diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolConfigService.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolConfigService.java similarity index 89% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolConfigService.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolConfigService.java index f6513d9a..b5f2bd1d 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolConfigService.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolConfigService.java @@ -15,11 +15,11 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; -import cn.hippo4j.starter.event.ApplicationCompleteEvent; -import cn.hippo4j.starter.remote.HttpAgent; -import cn.hippo4j.starter.remote.ServerHealthCheck; +import cn.hippo4j.springboot.starter.event.ApplicationCompleteEvent; +import cn.hippo4j.springboot.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.ServerHealthCheck; import org.springframework.context.ApplicationListener; import java.util.Arrays; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolOperation.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolOperation.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolOperation.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolOperation.java index 7086ee03..f5490108 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolOperation.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolOperation.java @@ -15,9 +15,9 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; -import cn.hippo4j.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; import java.util.concurrent.Executor; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolSubscribeCallback.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolSubscribeCallback.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolSubscribeCallback.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolSubscribeCallback.java index 88362c9d..407b9be1 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/core/ThreadPoolSubscribeCallback.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolSubscribeCallback.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.core; +package cn.hippo4j.springboot.starter.core; /** * ThreadPool subscribe callback. diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationCompleteEvent.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationCompleteEvent.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationCompleteEvent.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationCompleteEvent.java index 8adf23a3..2deb7ae6 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationCompleteEvent.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationCompleteEvent.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.event; +package cn.hippo4j.springboot.starter.event; import org.springframework.context.ApplicationEvent; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationContentPostProcessor.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationContentPostProcessor.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationContentPostProcessor.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationContentPostProcessor.java index aa24347b..6312fb6e 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/ApplicationContentPostProcessor.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/ApplicationContentPostProcessor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.event; +package cn.hippo4j.springboot.starter.event; import org.springframework.boot.context.event.ApplicationReadyEvent; import org.springframework.context.ApplicationContext; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/MonitorEventExecutor.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/MonitorEventExecutor.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/MonitorEventExecutor.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/MonitorEventExecutor.java index bc8719fc..b10e5c87 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/event/MonitorEventExecutor.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/event/MonitorEventExecutor.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.event; +package cn.hippo4j.springboot.starter.event; import cn.hippo4j.common.function.NoArgsConsumer; import cn.hippo4j.core.executor.support.QueueTypeEnum; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/ReportingEventExecutor.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/ReportingEventExecutor.java similarity index 94% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/ReportingEventExecutor.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/ReportingEventExecutor.java index 24f9a3e9..9650cee6 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/ReportingEventExecutor.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/ReportingEventExecutor.java @@ -15,14 +15,14 @@ * limitations under the License. */ -package cn.hippo4j.starter.monitor; +package cn.hippo4j.springboot.starter.monitor; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.monitor.Message; -import cn.hippo4j.starter.config.BootstrapProperties; -import cn.hippo4j.starter.monitor.collect.Collector; -import cn.hippo4j.starter.monitor.send.MessageSender; -import cn.hippo4j.starter.remote.ServerHealthCheck; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.monitor.collect.Collector; +import cn.hippo4j.springboot.starter.remote.ServerHealthCheck; +import cn.hippo4j.springboot.starter.monitor.send.MessageSender; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import cn.hippo4j.common.toolkit.ThreadUtil; import cn.hutool.core.collection.CollUtil; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/Collector.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/Collector.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/Collector.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/Collector.java index 5406b2a2..d84f6d75 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/Collector.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/Collector.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.monitor.collect; +package cn.hippo4j.springboot.starter.monitor.collect; import cn.hippo4j.common.monitor.Message; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/RunTimeInfoCollector.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/RunTimeInfoCollector.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/RunTimeInfoCollector.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/RunTimeInfoCollector.java index 8ec29410..4a18d2e6 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/collect/RunTimeInfoCollector.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/collect/RunTimeInfoCollector.java @@ -15,14 +15,14 @@ * limitations under the License. */ -package cn.hippo4j.starter.monitor.collect; +package cn.hippo4j.springboot.starter.monitor.collect; import cn.hippo4j.common.model.PoolRunStateInfo; import cn.hippo4j.common.monitor.AbstractMessage; import cn.hippo4j.common.monitor.Message; import cn.hippo4j.common.monitor.MessageTypeEnum; import cn.hippo4j.common.monitor.RuntimeMessage; -import cn.hippo4j.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; import cn.hippo4j.core.executor.state.AbstractThreadPoolRuntime; import cn.hutool.core.bean.BeanUtil; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/HttpConnectSender.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/HttpConnectSender.java similarity index 93% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/HttpConnectSender.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/HttpConnectSender.java index 8559af16..08f0f91f 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/HttpConnectSender.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/HttpConnectSender.java @@ -15,12 +15,12 @@ * limitations under the License. */ -package cn.hippo4j.starter.monitor.send; +package cn.hippo4j.springboot.starter.monitor.send; import cn.hippo4j.common.monitor.Message; import cn.hippo4j.common.monitor.MessageWrapper; import cn.hippo4j.common.toolkit.MessageConvert; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/MessageSender.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/MessageSender.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/MessageSender.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/MessageSender.java index 467488a1..7ba6c289 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/monitor/send/MessageSender.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/monitor/send/MessageSender.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.monitor.send; +package cn.hippo4j.springboot.starter.monitor.send; import cn.hippo4j.common.monitor.Message; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/notify/ServerNotifyConfigBuilder.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/notify/ServerNotifyConfigBuilder.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/notify/ServerNotifyConfigBuilder.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/notify/ServerNotifyConfigBuilder.java index f7b4b9ed..03101113 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/notify/ServerNotifyConfigBuilder.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/notify/ServerNotifyConfigBuilder.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.notify; +package cn.hippo4j.springboot.starter.notify; import cn.hippo4j.common.notify.AlarmControlHandler; import cn.hippo4j.common.api.NotifyConfigBuilder; @@ -26,8 +26,8 @@ import cn.hippo4j.common.toolkit.GroupKey; import cn.hippo4j.common.toolkit.JSONUtil; import cn.hippo4j.common.web.base.Result; import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage; -import cn.hippo4j.starter.config.BootstrapProperties; -import cn.hippo4j.starter.remote.HttpAgent; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.remote.HttpAgent; import cn.hutool.core.collection.CollUtil; import cn.hutool.core.util.StrUtil; import com.google.common.collect.Lists; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/AbstractHealthCheck.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/AbstractHealthCheck.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/AbstractHealthCheck.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/AbstractHealthCheck.java index 48d9f79a..b013ead8 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/AbstractHealthCheck.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/AbstractHealthCheck.java @@ -15,10 +15,10 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; -import cn.hippo4j.starter.core.ShutdownExecuteException; -import cn.hippo4j.starter.event.ApplicationCompleteEvent; +import cn.hippo4j.springboot.starter.event.ApplicationCompleteEvent; +import cn.hippo4j.springboot.starter.core.ShutdownExecuteException; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpAgent.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpAgent.java similarity index 98% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpAgent.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpAgent.java index b966b340..39961405 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpAgent.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpAgent.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; import cn.hippo4j.common.web.base.Result; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpScheduledHealthCheck.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpScheduledHealthCheck.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpScheduledHealthCheck.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpScheduledHealthCheck.java index bd282e7c..207c7af6 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/HttpScheduledHealthCheck.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/HttpScheduledHealthCheck.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; import cn.hippo4j.common.web.base.Result; import lombok.AllArgsConstructor; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHealthCheck.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHealthCheck.java similarity index 96% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHealthCheck.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHealthCheck.java index 6b5a4deb..5e04492b 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHealthCheck.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHealthCheck.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; /** * Server health check. diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHttpAgent.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHttpAgent.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHttpAgent.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHttpAgent.java index f0f782f5..b2c74848 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerHttpAgent.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerHttpAgent.java @@ -15,14 +15,14 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; import cn.hippo4j.common.config.ApplicationContextHolder; import cn.hippo4j.common.constant.Constants; import cn.hippo4j.common.web.base.Result; -import cn.hippo4j.starter.config.BootstrapProperties; -import cn.hippo4j.starter.security.SecurityProxy; -import cn.hippo4j.starter.toolkit.HttpClientUtil; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.security.SecurityProxy; +import cn.hippo4j.springboot.starter.toolkit.HttpClientUtil; import cn.hippo4j.core.executor.support.ThreadFactoryBuilder; import cn.hutool.core.util.StrUtil; import com.google.common.collect.Maps; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerListManager.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerListManager.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerListManager.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerListManager.java index 176f5ec2..8577e3cb 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/remote/ServerListManager.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/remote/ServerListManager.java @@ -15,9 +15,9 @@ * limitations under the License. */ -package cn.hippo4j.starter.remote; +package cn.hippo4j.springboot.starter.remote; -import cn.hippo4j.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; import cn.hutool.core.util.StrUtil; import lombok.Getter; import lombok.extern.slf4j.Slf4j; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/security/SecurityProxy.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/security/SecurityProxy.java similarity index 95% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/security/SecurityProxy.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/security/SecurityProxy.java index f41eff38..bae16462 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/security/SecurityProxy.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/security/SecurityProxy.java @@ -15,15 +15,15 @@ * limitations under the License. */ -package cn.hippo4j.starter.security; +package cn.hippo4j.springboot.starter.security; import cn.hippo4j.common.constant.Constants; import cn.hippo4j.common.model.TokenInfo; import cn.hippo4j.common.toolkit.JSONUtil; import cn.hippo4j.common.toolkit.StringUtil; import cn.hippo4j.common.web.base.Result; -import cn.hippo4j.starter.config.BootstrapProperties; -import cn.hippo4j.starter.toolkit.HttpClientUtil; +import cn.hippo4j.springboot.starter.config.BootstrapProperties; +import cn.hippo4j.springboot.starter.toolkit.HttpClientUtil; import lombok.extern.slf4j.Slf4j; import java.util.HashMap; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/CloudCommonIdUtil.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/CloudCommonIdUtil.java similarity index 97% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/CloudCommonIdUtil.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/CloudCommonIdUtil.java index 7a7d1a0b..0e633606 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/CloudCommonIdUtil.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/CloudCommonIdUtil.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.toolkit; +package cn.hippo4j.springboot.starter.toolkit; import cn.hippo4j.core.toolkit.inet.InetUtils; import lombok.SneakyThrows; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/HttpClientUtil.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/HttpClientUtil.java similarity index 99% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/HttpClientUtil.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/HttpClientUtil.java index 4eb64435..65663474 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/toolkit/HttpClientUtil.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/toolkit/HttpClientUtil.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.hippo4j.starter.toolkit; +package cn.hippo4j.springboot.starter.toolkit; import cn.hippo4j.common.toolkit.JSONUtil; import cn.hippo4j.common.web.exception.ServiceException; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/wrapper/ManagerListenerWrapper.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/wrapper/ManagerListenerWrapper.java similarity index 92% rename from hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/wrapper/ManagerListenerWrapper.java rename to hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/wrapper/ManagerListenerWrapper.java index 1d79b882..bb6f309a 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/starter/wrapper/ManagerListenerWrapper.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/wrapper/ManagerListenerWrapper.java @@ -15,9 +15,9 @@ * limitations under the License. */ -package cn.hippo4j.starter.wrapper; +package cn.hippo4j.springboot.starter.wrapper; -import cn.hippo4j.starter.core.Listener; +import cn.hippo4j.springboot.starter.core.Listener; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/resources/META-INF/spring.factories b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/resources/META-INF/spring.factories index dcfef765..18f30aff 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/resources/META-INF/spring.factories +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/resources/META-INF/spring.factories @@ -1,2 +1,2 @@ -org.springframework.boot.autoconfigure.EnableAutoConfiguration=cn.hippo4j.starter.config.DynamicThreadPoolAutoConfiguration -org.springframework.boot.diagnostics.FailureAnalyzer=cn.hippo4j.starter.core.ConfigEmptyAnalyzer +org.springframework.boot.autoconfigure.EnableAutoConfiguration=cn.hippo4j.springboot.starter.config.DynamicThreadPoolAutoConfiguration +org.springframework.boot.diagnostics.FailureAnalyzer=cn.hippo4j.springboot.starter.core.ConfigEmptyAnalyzer