├── .codecov.yml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── documentation_related.yml │ ├── enhancement_request.yml │ ├── feature_request.yml │ ├── question.yml │ └── unit_test.yml ├── PULL_REQUEST_TEMPLATE ├── dependabot.yml └── workflows │ ├── ci.yml │ └── reademe-contributors.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .vscode └── settings.json ├── LICENSE ├── README-EN.md ├── README.md ├── agent ├── config │ └── agent.config ├── dist-material │ ├── LICENSE │ └── NOTICE ├── hippo4j-agent-bootstrap │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── agent │ │ └── bootstrap │ │ └── Hippo4jAgent.java ├── hippo4j-agent-core │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── agent │ │ └── core │ │ ├── base64 │ │ └── Base64.java │ │ ├── boot │ │ ├── AgentPackagePath.java │ │ ├── BootService.java │ │ ├── DefaultImplementor.java │ │ ├── OverrideImplementor.java │ │ ├── PluginConfig.java │ │ ├── ServiceConflictException.java │ │ ├── ServiceManager.java │ │ ├── SpringBootConfigInitializer.java │ │ └── SpringBootConfigNode.java │ │ ├── conf │ │ ├── Constants.java │ │ ├── SnifferConfigInitializer.java │ │ └── dynamic │ │ │ └── AgentConfigChangeWatcher.java │ │ ├── jvm │ │ └── LoadedLibraryCollector.java │ │ ├── os │ │ ├── OSUtil.java │ │ └── ProcessorUtil.java │ │ ├── plugin │ │ ├── AbstractClassEnhancePluginDefine.java │ │ ├── ByteBuddyCoreClasses.java │ │ ├── DynamicPluginLoader.java │ │ ├── EnhanceContext.java │ │ ├── InstrumentDebuggingClass.java │ │ ├── PluginBootstrap.java │ │ ├── PluginCfg.java │ │ ├── PluginDefine.java │ │ ├── PluginException.java │ │ ├── PluginFinder.java │ │ ├── PluginResourcesResolver.java │ │ ├── PluginSelector.java │ │ ├── WitnessFinder.java │ │ ├── WitnessMethod.java │ │ ├── bootstrap │ │ │ ├── BootstrapInstrumentBoost.java │ │ │ ├── BootstrapPluginLogBridge.java │ │ │ ├── IBootstrapLog.java │ │ │ └── template │ │ │ │ ├── ConstructorInterTemplate.java │ │ │ │ ├── InstanceMethodInterTemplate.java │ │ │ │ ├── InstanceMethodInterWithOverrideArgsTemplate.java │ │ │ │ ├── StaticMethodInterTemplate.java │ │ │ │ ├── StaticMethodInterWithOverrideArgsTemplate.java │ │ │ │ └── v2 │ │ │ │ ├── InstanceMethodInterV2Template.java │ │ │ │ ├── InstanceMethodInterV2WithOverrideArgsTemplate.java │ │ │ │ ├── StaticMethodInterV2Template.java │ │ │ │ └── StaticMethodInterV2WithOverrideArgsTemplate.java │ │ ├── bytebuddy │ │ │ ├── AbstractJunction.java │ │ │ ├── AnnotationTypeNameMatch.java │ │ │ ├── ArgumentTypeNameMatch.java │ │ │ ├── ArrayTypeNameChecker.java │ │ │ ├── CacheableTransformerDecorator.java │ │ │ └── ReturnTypeNameMatch.java │ │ ├── exception │ │ │ └── IllegalPluginDefineException.java │ │ ├── interceptor │ │ │ ├── ConstructorInterceptPoint.java │ │ │ ├── DeclaredInstanceMethodsInterceptPoint.java │ │ │ ├── EnhanceException.java │ │ │ ├── InstanceMethodsInterceptPoint.java │ │ │ ├── StaticMethodsInterceptPoint.java │ │ │ ├── enhance │ │ │ │ ├── BootstrapInterRuntimeAssist.java │ │ │ │ ├── ClassEnhancePluginDefine.java │ │ │ │ ├── ClassInstanceMethodsEnhancePluginDefine.java │ │ │ │ ├── ClassStaticMethodsEnhancePluginDefine.java │ │ │ │ ├── ConstructorInter.java │ │ │ │ ├── EnhancedInstance.java │ │ │ │ ├── InstMethodsInter.java │ │ │ │ ├── InstMethodsInterWithOverrideArgs.java │ │ │ │ ├── InstanceConstructorInterceptor.java │ │ │ │ ├── InstanceMethodsAroundInterceptor.java │ │ │ │ ├── MethodInterceptResult.java │ │ │ │ ├── OverrideCallable.java │ │ │ │ ├── StaticMethodsAroundInterceptor.java │ │ │ │ ├── StaticMethodsInter.java │ │ │ │ ├── StaticMethodsInterWithOverrideArgs.java │ │ │ │ └── v2 │ │ │ │ │ ├── ClassEnhancePluginDefineV2.java │ │ │ │ │ ├── ClassInstanceMethodsEnhancePluginDefineV2.java │ │ │ │ │ ├── ClassStaticMethodsEnhancePluginDefineV2.java │ │ │ │ │ ├── InstMethodsInterV2.java │ │ │ │ │ ├── InstMethodsInterV2WithOverrideArgs.java │ │ │ │ │ ├── InstanceMethodsAroundInterceptorV2.java │ │ │ │ │ ├── MethodInvocationContext.java │ │ │ │ │ ├── StaticMethodsAroundInterceptorV2.java │ │ │ │ │ ├── StaticMethodsInterV2.java │ │ │ │ │ └── StaticMethodsInterV2WithOverrideArgs.java │ │ │ └── v2 │ │ │ │ ├── ConstructorInterceptV2Point.java │ │ │ │ ├── DeclaredInstanceMethodsInterceptV2Point.java │ │ │ │ ├── InstanceMethodsInterceptV2Point.java │ │ │ │ └── StaticMethodsInterceptV2Point.java │ │ ├── jdk9module │ │ │ └── JDK9ModuleExporter.java │ │ ├── loader │ │ │ ├── AgentClassLoader.java │ │ │ ├── InstrumentationLoader.java │ │ │ └── InterceptorInstanceLoader.java │ │ └── match │ │ │ ├── ClassAnnotationMatch.java │ │ │ ├── ClassMatch.java │ │ │ ├── HierarchyMatch.java │ │ │ ├── IndirectMatch.java │ │ │ ├── MethodAnnotationMatch.java │ │ │ ├── MethodInheritanceAnnotationMatcher.java │ │ │ ├── MultiClassNameMatch.java │ │ │ ├── NameMatch.java │ │ │ ├── PrefixMatch.java │ │ │ ├── ProtectiveShieldMatcher.java │ │ │ ├── RegexMatch.java │ │ │ └── logical │ │ │ ├── LogicalAndMatch.java │ │ │ ├── LogicalMatchOperation.java │ │ │ └── LogicalOrMatch.java │ │ └── util │ │ ├── AgentThreadPoolConstants.java │ │ ├── CollectionUtil.java │ │ ├── ConfigInitializer.java │ │ ├── CustomizeExpression.java │ │ ├── ExecutorNameUtil.java │ │ ├── FileUtils.java │ │ ├── IOUtils.java │ │ ├── Length.java │ │ ├── MethodUtil.java │ │ ├── PlaceholderConfigurerSupport.java │ │ ├── PrivateKeyUtil.java │ │ ├── PropertyPlaceholderHelper.java │ │ ├── ReflectUtil.java │ │ ├── RegexUtil.java │ │ ├── RunnableWithExceptionProtection.java │ │ ├── StringUtil.java │ │ └── ThreadPoolPropertyKey.java ├── hippo4j-agent-plugin │ ├── adapter-plugins │ │ ├── dubbo-plugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── agent │ │ │ │ └── adapter │ │ │ │ └── dubbo │ │ │ │ └── DubboThreadPoolAdapter.java │ │ └── pom.xml │ ├── apollo-plugin │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── agent │ │ │ │ └── plugin │ │ │ │ └── apollo │ │ │ │ ├── ApolloDynamicThreadPoolChangeHandler.java │ │ │ │ ├── boot │ │ │ │ └── ApolloPluginBootService.java │ │ │ │ ├── define │ │ │ │ └── ApolloInstrumentation.java │ │ │ │ ├── interceptor │ │ │ │ └── ApolloConfigConstructorInterceptor.java │ │ │ │ └── listeners │ │ │ │ └── ApolloConfigPropertiesLoaderCompletedListener.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── cn.hippo4j.agent.core.boot.BootService │ │ │ └── hippo4j-plugin.def │ ├── nacos-plugin │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── agent │ │ │ │ └── plugin │ │ │ │ └── nacos │ │ │ │ ├── NacosDynamicThreadPoolChangeHandler.java │ │ │ │ ├── boot │ │ │ │ └── NacosPluginBootService.java │ │ │ │ ├── define │ │ │ │ ├── NacosCloudAdapterInstrumentation.java │ │ │ │ └── NacosInstrumentation.java │ │ │ │ ├── interceptor │ │ │ │ ├── NacosCloudAdapterConfigInstanceMethodInterceptor.java │ │ │ │ └── NacosConfigConstructorInterceptor.java │ │ │ │ └── listeners │ │ │ │ └── NacosConfigPropertiesLoaderCompletedListener.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── cn.hippo4j.agent.core.boot.BootService │ │ │ └── hippo4j-plugin.def │ ├── pom.xml │ ├── spring-plugins │ │ ├── pom.xml │ │ ├── spring-boot-1x-plugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── cn │ │ │ │ │ └── hippo4j │ │ │ │ │ └── agent │ │ │ │ │ └── plugin │ │ │ │ │ └── spring │ │ │ │ │ └── boot │ │ │ │ │ └── v1 │ │ │ │ │ ├── boot │ │ │ │ │ └── SpringBootV1PluginBootService.java │ │ │ │ │ ├── define │ │ │ │ │ └── EventPublishingRunListenerInstrumentationV1.java │ │ │ │ │ └── interceptor │ │ │ │ │ └── EventPublishingRunListenerFinishedInterceptorV1.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── cn.hippo4j.agent.core.boot.BootService │ │ │ │ └── hippo4j-plugin.def │ │ ├── spring-boot-2x-plugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── cn │ │ │ │ │ └── hippo4j │ │ │ │ │ └── agent │ │ │ │ │ └── plugin │ │ │ │ │ └── spring │ │ │ │ │ └── boot │ │ │ │ │ └── v2 │ │ │ │ │ ├── boot │ │ │ │ │ └── SpringBootV2PluginBootService.java │ │ │ │ │ ├── define │ │ │ │ │ └── EventPublishingRunListenerInstrumentationV2.java │ │ │ │ │ └── interceptor │ │ │ │ │ └── EventPublishingStartedInterceptorV2.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── cn.hippo4j.agent.core.boot.BootService │ │ │ │ └── hippo4j-plugin.def │ │ ├── spring-boot-3x-plugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── cn │ │ │ │ │ └── hippo4j │ │ │ │ │ └── agent │ │ │ │ │ └── plugin │ │ │ │ │ └── spring │ │ │ │ │ └── boot │ │ │ │ │ └── v3 │ │ │ │ │ ├── boot │ │ │ │ │ └── SpringBootV3PluginBootService.java │ │ │ │ │ ├── define │ │ │ │ │ └── EventPublishingRunListenerInstrumentationV3.java │ │ │ │ │ └── interceptor │ │ │ │ │ └── EventPublishingStartedInterceptorV3.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── cn.hippo4j.agent.core.boot.BootService │ │ │ │ └── hippo4j-plugin.def │ │ └── spring-plugin-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── agent │ │ │ └── plugin │ │ │ └── spring │ │ │ └── common │ │ │ ├── alarm │ │ │ └── AgentModeNotifyConfigBuilder.java │ │ │ ├── conf │ │ │ ├── NacosCloudConfig.java │ │ │ ├── NacosConfig.java │ │ │ └── SpringBootConfig.java │ │ │ ├── define │ │ │ └── SpringApplicationInstrumentation.java │ │ │ ├── event │ │ │ └── DynamicThreadPoolRefreshListener.java │ │ │ ├── interceptor │ │ │ └── EventPublishingRunListenerEnvironmentPreparedInterceptor.java │ │ │ ├── monitor │ │ │ ├── MonitorHandlersConfigurator.java │ │ │ └── MonitorMetricEndpoint.java │ │ │ ├── support │ │ │ ├── SpringEnvironmentSupport.java │ │ │ ├── SpringPropertiesLoader.java │ │ │ ├── SpringThreadPoolRegisterSupport.java │ │ │ ├── ThreadPoolCheckAlarmSupport.java │ │ │ └── ThreadPoolMonitorSupport.java │ │ │ └── toolkit │ │ │ └── SpringPropertyBinder.java │ └── threadpool-plugin │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── agent │ │ │ └── plugin │ │ │ └── thread │ │ │ └── pool │ │ │ ├── define │ │ │ └── ThreadPoolExecutorInstrumentation.java │ │ │ └── interceptor │ │ │ └── ThreadPoolExecutorConstructorMethodInterceptor.java │ │ └── resources │ │ └── hippo4j-plugin.def └── pom.xml ├── checkstyle ├── hippo4j_checkstyle.xml └── hippo4j_checkstyle_suppression.xml ├── dependencies └── pom.xml ├── docker ├── Dockerfile └── docker-startup.sh ├── docs ├── README.md ├── babel.config.js ├── blog │ ├── 2022-06-06-hippo4j │ │ └── index.md │ └── authors.yml ├── community │ ├── _category_.json │ ├── contributor.md │ ├── dev_convention │ │ ├── _category_.json │ │ ├── code.md │ │ └── document.md │ ├── faq.md │ ├── sponsor.md │ ├── team.md │ └── update-log.md ├── deploy.sh ├── docs │ └── user_docs │ │ ├── dev_manual │ │ ├── _category_.json │ │ ├── queue-custom.md │ │ ├── queue-info.md │ │ ├── rejected-policy-custom.md │ │ └── rejected-policy-info.md │ │ ├── getting_started │ │ ├── _category_.json │ │ ├── config │ │ │ ├── _category_.json │ │ │ ├── hippo4j-config-default.md │ │ │ ├── hippo4j-config-monitor.md │ │ │ ├── hippo4j-config-more.md │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ └── hippo4j-config-start.md │ │ ├── difference.md │ │ ├── hippo4j-adapter.md │ │ ├── img │ │ │ ├── docsVersionDropdown.png │ │ │ ├── grafana-monitor.jpg │ │ │ └── localeDropdown.png │ │ └── server │ │ │ ├── _category_.json │ │ │ ├── hippo4j-server-config.md │ │ │ ├── hippo4j-server-monitor.md │ │ │ └── hippo4j-server-start.md │ │ ├── intro.md │ │ ├── ops │ │ ├── _category_.json │ │ ├── hippo4j-server-deploy.md │ │ └── server-docker.md │ │ ├── other │ │ ├── _category_.json │ │ ├── official-ccounts.md │ │ ├── operation.md │ │ └── question.md │ │ └── user_guide │ │ ├── _category_.json │ │ ├── frame.md │ │ ├── framework.md │ │ ├── notify.md │ │ └── quick-start.md ├── docusaurus.config.js ├── i18n │ ├── en │ │ ├── code.json │ │ ├── docusaurus-plugin-content-blog │ │ │ └── options.json │ │ ├── docusaurus-plugin-content-docs-community │ │ │ └── current.json │ │ ├── docusaurus-plugin-content-docs │ │ │ ├── current.json │ │ │ ├── version-1.4.2.json │ │ │ ├── version-1.4.3.json │ │ │ └── version-1.5.0.json │ │ └── docusaurus-theme-classic │ │ │ ├── footer.json │ │ │ └── navbar.json │ └── zh │ │ ├── code.json │ │ ├── docusaurus-plugin-content-blog │ │ ├── 2022-06-06-hippo4j │ │ │ └── index.md │ │ ├── authors.yml │ │ └── options.json │ │ ├── docusaurus-plugin-content-docs-community │ │ ├── current.json │ │ └── current │ │ │ ├── _category_.json │ │ │ ├── contributor.md │ │ │ ├── dev_convention │ │ │ ├── _category_.json │ │ │ ├── code.md │ │ │ └── document.md │ │ │ ├── faq.md │ │ │ ├── sponsor.md │ │ │ ├── team.md │ │ │ └── update-log.md │ │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ ├── current │ │ │ └── user_docs │ │ │ │ ├── dev_manual │ │ │ │ ├── _category_.json │ │ │ │ ├── queue-custom.md │ │ │ │ ├── queue-info.md │ │ │ │ ├── rejected-policy-custom.md │ │ │ │ └── rejected-policy-info.md │ │ │ │ ├── getting_started │ │ │ │ ├── _category_.json │ │ │ │ ├── config │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ │ └── hippo4j-config-start.md │ │ │ │ ├── difference.md │ │ │ │ ├── hippo4j-adapter.md │ │ │ │ ├── img │ │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ │ └── localeDropdown.png │ │ │ │ └── server │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ │ ├── hippo4j-server-monitor.md │ │ │ │ │ └── hippo4j-server-start.md │ │ │ │ ├── intro.md │ │ │ │ ├── ops │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-deploy.md │ │ │ │ └── server-docker.md │ │ │ │ ├── other │ │ │ │ ├── _category_.json │ │ │ │ ├── official-ccounts.md │ │ │ │ ├── operation.md │ │ │ │ └── question.md │ │ │ │ └── user_guide │ │ │ │ ├── _category_.json │ │ │ │ ├── frame.md │ │ │ │ ├── framework.md │ │ │ │ ├── notify.md │ │ │ │ └── quick-start.md │ │ ├── version-1.4.2.json │ │ ├── version-1.4.2 │ │ │ └── user_docs │ │ │ │ ├── dev_manual │ │ │ │ ├── _category_.json │ │ │ │ ├── rejected-policy-custom.md │ │ │ │ └── rejected-policy-info.md │ │ │ │ ├── getting_started │ │ │ │ ├── _category_.json │ │ │ │ ├── config │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ │ └── hippo4j-config-start.md │ │ │ │ ├── difference.md │ │ │ │ ├── hippo4j-adapter.md │ │ │ │ ├── img │ │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ │ └── localeDropdown.png │ │ │ │ └── server │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ │ └── hippo4j-server-start.md │ │ │ │ ├── intro.md │ │ │ │ ├── ops │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-deploy.md │ │ │ │ └── server-docker.md │ │ │ │ ├── other │ │ │ │ ├── _category_.json │ │ │ │ ├── official-ccounts.md │ │ │ │ ├── operation.md │ │ │ │ └── question.md │ │ │ │ └── user_guide │ │ │ │ ├── _category_.json │ │ │ │ ├── frame.md │ │ │ │ ├── framework.md │ │ │ │ ├── notify.md │ │ │ │ └── quick-start.md │ │ ├── version-1.4.3.json │ │ ├── version-1.4.3 │ │ │ └── user_docs │ │ │ │ ├── dev_manual │ │ │ │ ├── _category_.json │ │ │ │ ├── rejected-policy-custom.md │ │ │ │ └── rejected-policy-info.md │ │ │ │ ├── getting_started │ │ │ │ ├── _category_.json │ │ │ │ ├── config │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ │ └── hippo4j-config-start.md │ │ │ │ ├── difference.md │ │ │ │ ├── hippo4j-adapter.md │ │ │ │ ├── img │ │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ │ └── localeDropdown.png │ │ │ │ └── server │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ │ ├── hippo4j-server-monitor.md │ │ │ │ │ └── hippo4j-server-start.md │ │ │ │ ├── intro.md │ │ │ │ ├── ops │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-deploy.md │ │ │ │ └── server-docker.md │ │ │ │ ├── other │ │ │ │ ├── _category_.json │ │ │ │ ├── official-ccounts.md │ │ │ │ ├── operation.md │ │ │ │ └── question.md │ │ │ │ └── user_guide │ │ │ │ ├── _category_.json │ │ │ │ ├── frame.md │ │ │ │ ├── framework.md │ │ │ │ ├── notify.md │ │ │ │ └── quick-start.md │ │ ├── version-1.5.0.json │ │ └── version-1.5.0 │ │ │ └── user_docs │ │ │ ├── dev_manual │ │ │ ├── _category_.json │ │ │ ├── rejected-policy-custom.md │ │ │ └── rejected-policy-info.md │ │ │ ├── getting_started │ │ │ ├── _category_.json │ │ │ ├── config │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ └── hippo4j-config-start.md │ │ │ ├── difference.md │ │ │ ├── hippo4j-adapter.md │ │ │ ├── img │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ └── localeDropdown.png │ │ │ └── server │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ ├── hippo4j-server-monitor.md │ │ │ │ └── hippo4j-server-start.md │ │ │ ├── intro.md │ │ │ ├── ops │ │ │ ├── _category_.json │ │ │ ├── hippo4j-server-deploy.md │ │ │ └── server-docker.md │ │ │ ├── other │ │ │ ├── _category_.json │ │ │ ├── official-ccounts.md │ │ │ ├── operation.md │ │ │ └── question.md │ │ │ └── user_guide │ │ │ ├── _category_.json │ │ │ ├── frame.md │ │ │ ├── framework.md │ │ │ ├── notify.md │ │ │ └── quick-start.md │ │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── package-lock.json ├── package.json ├── sidebars.js ├── sidebarsCommunity.js ├── src │ ├── components │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── LandingPage │ │ │ ├── GithubInfo.jsx │ │ │ ├── Hero.jsx │ │ │ ├── Introduction.jsx │ │ │ ├── index.js │ │ │ └── useGithubInfo.jsx │ ├── css │ │ └── custom.css │ └── pages │ │ ├── group.md │ │ ├── index.js │ │ ├── index.module.css │ │ ├── markdown-page.md │ │ ├── old_users.md │ │ └── users.js ├── static │ ├── .nojekyll │ ├── img │ │ ├── company_logos │ │ │ ├── 5000m.jpg │ │ │ ├── 51shebao.png │ │ │ ├── 94ai.png │ │ │ ├── aisino.png │ │ │ ├── bananain.png │ │ │ ├── bangkebang.jpg │ │ │ ├── data4truth.jpg │ │ │ ├── didiglobal.svg │ │ │ ├── digitalchina.png │ │ │ ├── duofriend.png │ │ │ ├── eju.png │ │ │ ├── fittime.png │ │ │ ├── geely.jpg │ │ │ ├── glodon.jpg │ │ │ ├── haohuoyundian.png │ │ │ ├── hua-cloud.jpg │ │ │ ├── ist.png │ │ │ ├── lbdj.svg │ │ │ ├── lightinthebox.avif │ │ │ ├── medbanks.png │ │ │ ├── payermax.png │ │ │ ├── qyzl.jpg │ │ │ ├── serviceshare.png │ │ │ ├── shangmanet.png │ │ │ ├── tianshu.png │ │ │ ├── tjlc.png │ │ │ ├── tophant.png │ │ │ ├── uyess.jpg │ │ │ ├── xdf.png │ │ │ ├── xinhuazhiyun.svg │ │ │ ├── yckjdata.png │ │ │ ├── yiche.png │ │ │ ├── youdao.png │ │ │ ├── yuantiaokj.png │ │ │ ├── zhihu.png │ │ │ ├── zhihuiya.png │ │ │ ├── zhlc.png │ │ │ ├── ziroom.png │ │ │ └── zzltsw.jpg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── hero.svg │ │ ├── hero │ │ │ ├── bg.jpg │ │ │ ├── bg2.jpg │ │ │ ├── hero-removebg.png │ │ │ └── hero.jpg │ │ ├── hippo4j.png │ │ ├── hippo4j_favicon.ico │ │ ├── introduction │ │ │ ├── p1.svg │ │ │ ├── p11.svg │ │ │ ├── p2.svg │ │ │ ├── p22.svg │ │ │ ├── p3.svg │ │ │ ├── p33.svg │ │ │ ├── t.jpg │ │ │ └── t2.svg │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg │ └── json │ │ └── company_logo.json ├── tailwind.config.js ├── versioned_docs │ ├── version-1.4.2 │ │ └── user_docs │ │ │ ├── dev_manual │ │ │ ├── _category_.json │ │ │ ├── rejected-policy-custom.md │ │ │ └── rejected-policy-info.md │ │ │ ├── getting_started │ │ │ ├── _category_.json │ │ │ ├── config │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ └── hippo4j-config-start.md │ │ │ ├── difference.md │ │ │ ├── hippo4j-adapter.md │ │ │ ├── img │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ └── localeDropdown.png │ │ │ └── server │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ └── hippo4j-server-start.md │ │ │ ├── intro.md │ │ │ ├── ops │ │ │ ├── _category_.json │ │ │ ├── hippo4j-server-deploy.md │ │ │ └── server-docker.md │ │ │ ├── other │ │ │ ├── _category_.json │ │ │ ├── official-ccounts.md │ │ │ ├── operation.md │ │ │ └── question.md │ │ │ └── user_guide │ │ │ ├── _category_.json │ │ │ ├── frame.md │ │ │ ├── framework.md │ │ │ ├── notify.md │ │ │ └── quick-start.md │ ├── version-1.4.3 │ │ └── user_docs │ │ │ ├── dev_manual │ │ │ ├── _category_.json │ │ │ ├── rejected-policy-custom.md │ │ │ └── rejected-policy-info.md │ │ │ ├── getting_started │ │ │ ├── _category_.json │ │ │ ├── config │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-config-default.md │ │ │ │ ├── hippo4j-config-monitor.md │ │ │ │ ├── hippo4j-config-more.md │ │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ │ └── hippo4j-config-start.md │ │ │ ├── difference.md │ │ │ ├── hippo4j-adapter.md │ │ │ ├── img │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ ├── grafana-monitor.jpg │ │ │ │ └── localeDropdown.png │ │ │ └── server │ │ │ │ ├── _category_.json │ │ │ │ ├── hippo4j-server-config.md │ │ │ │ ├── hippo4j-server-monitor.md │ │ │ │ └── hippo4j-server-start.md │ │ │ ├── intro.md │ │ │ ├── ops │ │ │ ├── _category_.json │ │ │ ├── hippo4j-server-deploy.md │ │ │ └── server-docker.md │ │ │ ├── other │ │ │ ├── _category_.json │ │ │ ├── official-ccounts.md │ │ │ ├── operation.md │ │ │ └── question.md │ │ │ └── user_guide │ │ │ ├── _category_.json │ │ │ ├── frame.md │ │ │ ├── framework.md │ │ │ ├── notify.md │ │ │ └── quick-start.md │ └── version-1.5.0 │ │ └── user_docs │ │ ├── dev_manual │ │ ├── _category_.json │ │ ├── rejected-policy-custom.md │ │ └── rejected-policy-info.md │ │ ├── getting_started │ │ ├── _category_.json │ │ ├── config │ │ │ ├── _category_.json │ │ │ ├── hippo4j-config-default.md │ │ │ ├── hippo4j-config-monitor.md │ │ │ ├── hippo4j-config-more.md │ │ │ ├── hippo4j-config-springboot1x-adapter.md │ │ │ └── hippo4j-config-start.md │ │ ├── difference.md │ │ ├── hippo4j-adapter.md │ │ ├── img │ │ │ ├── docsVersionDropdown.png │ │ │ ├── grafana-monitor.jpg │ │ │ └── localeDropdown.png │ │ └── server │ │ │ ├── _category_.json │ │ │ ├── hippo4j-server-config.md │ │ │ ├── hippo4j-server-monitor.md │ │ │ └── hippo4j-server-start.md │ │ ├── intro.md │ │ ├── ops │ │ ├── _category_.json │ │ ├── hippo4j-server-deploy.md │ │ └── server-docker.md │ │ ├── other │ │ ├── _category_.json │ │ ├── official-ccounts.md │ │ ├── operation.md │ │ └── question.md │ │ └── user_guide │ │ ├── _category_.json │ │ ├── frame.md │ │ ├── framework.md │ │ ├── notify.md │ │ └── quick-start.md ├── versioned_sidebars │ ├── version-1.4.2-sidebars.json │ ├── version-1.4.3-sidebars.json │ └── version-1.5.0-sidebars.json └── versions.json ├── examples ├── pom.xml └── threadpool-example │ ├── agent │ ├── agent-example-core │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── example │ │ │ └── agent │ │ │ └── core │ │ │ ├── config │ │ │ └── ThreadPoolConfiguration.java │ │ │ └── inittest │ │ │ └── AlarmSendMessageTest.java │ ├── config-apollo-spring-boot-1x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── apollo │ │ │ │ └── v1 │ │ │ │ └── AgentConfigApolloSpringBoot1xExampleApplication.java │ │ │ └── resources │ │ │ └── bootstrap.properties │ ├── config-apollo-spring-boot-3x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── apollo │ │ │ │ └── v3 │ │ │ │ ├── AgentConfigApolloSpringBoot3xExampleApplication.java │ │ │ │ ├── AlarmSendMessageBootV3Test.java │ │ │ │ └── ThreadPoolConfigurationBootV3.java │ │ │ └── resources │ │ │ └── application.properties │ ├── config-apollo │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── apollo │ │ │ │ └── AgentConfigApolloExampleApplication.java │ │ │ └── resources │ │ │ └── bootstrap.properties │ ├── config-nacos-spring-boot-1x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── v1 │ │ │ │ └── AgentConfigNacosSpringBoot1xExampleApplication.java │ │ │ └── resources │ │ │ └── bootstrap.properties │ ├── config-nacos │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── AgentConfigNacosExampleApplication.java │ │ │ └── resources │ │ │ └── bootstrap.properties │ ├── config-naocs-spring-boot-3x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── v3 │ │ │ │ ├── AgentConfigNacosSpringBoot3xExampleApplication.java │ │ │ │ ├── AlarmSendMessageBootV3Test.java │ │ │ │ └── ThreadPoolConfigurationBootV3.java │ │ │ └── resources │ │ │ └── application.properties │ └── pom.xml │ ├── config │ ├── config-apollo-spring-boot-1x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── apollo │ │ │ │ └── ConfigApolloSpringBoot1xExampleApplication.java │ │ │ └── resources │ │ │ ├── apollo-config-agent.properties │ │ │ ├── apollo-config.properties │ │ │ └── bootstrap.properties │ ├── config-apollo │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── apollo │ │ │ │ └── ConfigApolloExampleApplication.java │ │ │ └── resources │ │ │ ├── apollo-config-agent.properties │ │ │ ├── apollo-config.properties │ │ │ └── bootstrap.properties │ ├── config-consul-spring-boot │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── consul │ │ │ │ └── ConfigConsulExampleApplication.java │ │ │ └── resources │ │ │ ├── bootstrap.yml │ │ │ └── consul-config.properties │ ├── config-etcd │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── etcd │ │ │ │ ├── ConfigEtcdExampleApplication.java │ │ │ │ ├── config │ │ │ │ └── ThreadPoolConfig.java │ │ │ │ └── controller │ │ │ │ └── TestController.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── etcd-config.properties │ ├── config-nacos-spring-boot-1x │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── ConfigNacosSpringBoot15ExampleApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── bootstrap.properties │ │ │ └── nacos-config.properties │ ├── config-nacos-spring-boot3 │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── ConfigNacosSpringBootExampleApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── nacos-config.properties │ ├── config-nacos │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── agent │ │ │ │ └── config │ │ │ │ └── nacos │ │ │ │ └── ConfigNacosExampleApplication.java │ │ │ └── resources │ │ │ ├── bootstrap.properties │ │ │ └── nacos-config.properties │ ├── config-zookeeper │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── config │ │ │ │ └── zookeeper │ │ │ │ └── ConfigZookeeperExampleApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── zookeeper-demo.properties │ └── pom.xml │ ├── example-core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── example │ │ │ └── core │ │ │ ├── config │ │ │ └── DynamicThreadPoolConfig.java │ │ │ ├── constant │ │ │ └── GlobalTestConstant.java │ │ │ ├── dto │ │ │ └── SendMessageDTO.java │ │ │ ├── handler │ │ │ ├── CustomerClientNetworkService.java │ │ │ ├── ErrorLogRejectedExecutionHandler.java │ │ │ └── TaskTraceBuilderHandler.java │ │ │ └── inittest │ │ │ ├── AlarmSendMessageTest.java │ │ │ ├── RegisterDynamicThreadPoolTest.java │ │ │ ├── RunStateHandlerTest.java │ │ │ └── TaskDecoratorTest.java │ │ └── test │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── example │ │ └── core │ │ └── TaskTimeRecordPluginBenchmarkTest.java │ ├── pom.xml │ └── server │ ├── adapter-dubbo-spring-boot3 │ ├── README.md │ ├── adapter-dubbo-spring-boot-3x-consumer-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── server │ │ │ │ └── adapter │ │ │ │ └── dubbo │ │ │ │ └── springboot3 │ │ │ │ └── consumer │ │ │ │ ├── ConsumerApplication.java │ │ │ │ └── DubboThreadTestService.java │ │ │ └── resources │ │ │ └── application.properties │ ├── adapter-dubbo-spring-boot-3x-interface-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── example │ │ │ └── server │ │ │ └── adapter │ │ │ └── dubbo │ │ │ └── springboot3 │ │ │ └── DemoService.java │ ├── adapter-dubbo-spring-boot-3x-provider-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── example │ │ │ │ └── server │ │ │ │ └── adapter │ │ │ │ └── dubbo │ │ │ │ └── springboot3 │ │ │ │ ├── DemoServiceImpl.java │ │ │ │ └── ProviderApplication.java │ │ │ └── resources │ │ │ └── application.properties │ └── pom.xml │ ├── adapter-kafka │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── kafka │ │ │ └── example │ │ │ ├── MessageConsume.java │ │ │ ├── MessageProduce.java │ │ │ └── ServerAdapterKafkaExampleApplication.java │ │ └── resources │ │ └── application.properties │ ├── adapter-rabbitmq-spring-boot3 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── rabbitmq │ │ │ └── example │ │ │ ├── ServerAdapterRabbitMQExampleApplication.java │ │ │ ├── config │ │ │ ├── RabbitMQTemplateConfig.java │ │ │ └── RabbitMQThreadPoolConfig.java │ │ │ ├── constants │ │ │ └── SimpleMQConstant.java │ │ │ ├── consumer │ │ │ └── MessageConsumer.java │ │ │ └── producer │ │ │ └── MessageProduce.java │ │ └── resources │ │ └── application.properties │ ├── adapter-rabbitmq │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── rabbitmq │ │ │ └── example │ │ │ ├── ServerAdapterRabbitMQExampleApplication.java │ │ │ ├── config │ │ │ ├── RabbitMQTemplateConfig.java │ │ │ └── RabbitMQThreadPoolConfig.java │ │ │ ├── constants │ │ │ └── SimpleMQConstant.java │ │ │ ├── consumer │ │ │ └── MessageConsumer.java │ │ │ └── producer │ │ │ └── MessageProduce.java │ │ └── resources │ │ └── application.properties │ ├── adapter-rocketmq │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── rocketmq │ │ │ └── example │ │ │ ├── MessageConsume.java │ │ │ ├── MessageProduce.java │ │ │ └── ServerAdapterRocketMQExampleApplication.java │ │ └── resources │ │ └── application.properties │ ├── adapter-stream-rabbitmq-spring-boot3 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── springcloud │ │ │ └── stream │ │ │ └── rabbitmq │ │ │ └── example │ │ │ ├── MessageProduce.java │ │ │ └── ServerAdapterSpringCloudStreamRabbitMQApplication.java │ │ └── resources │ │ └── application.properties │ ├── adapter-stream-rabbitmq │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── springcloud │ │ │ └── stream │ │ │ └── rabbitmq │ │ │ └── example │ │ │ ├── MessageProduce.java │ │ │ └── ServerAdapterSpringCloudStreamRabbitMQApplication.java │ │ └── resources │ │ └── application.properties │ ├── adapter-stream-rocketmq │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── springboot │ │ │ └── starter │ │ │ └── adapter │ │ │ └── springcloud │ │ │ └── stream │ │ │ └── rocketmq │ │ │ └── example │ │ │ ├── MessageConsume.java │ │ │ ├── MessageProduce.java │ │ │ ├── MySink.java │ │ │ └── ServerAdapterSpringCloudStreamRocketMQApplication.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── cn.hippo4j.core.api.ClientNetworkService │ │ └── application.properties │ ├── monitor-elasticsearch │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── example │ │ │ └── es │ │ │ └── monitor │ │ │ └── ServerEsMonitorExampleApplication.java │ │ └── resources │ │ └── application.properties │ ├── pom.xml │ ├── server-spring-boot3 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── example │ │ │ └── server │ │ │ └── ServerExampleApplication.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── cn.hippo4j.common.executor.support.CustomRejectedExecutionHandler │ │ └── application.properties │ └── server │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── cn │ │ └── hippo4j │ │ └── example │ │ └── server │ │ └── ServerExampleApplication.java │ └── resources │ ├── META-INF │ └── services │ │ ├── cn.hippo4j.common.executor.support.CustomRejectedExecutionHandler │ │ └── cn.hippo4j.core.api.ClientNetworkService │ └── application.properties ├── format ├── hippo4j_spotless_formatter.xml └── license-header ├── infra ├── common │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── common │ │ │ ├── api │ │ │ ├── ClientCloseHookExecute.java │ │ │ ├── DynamicThreadPoolAdapter.java │ │ │ ├── IExecutorProperties.java │ │ │ ├── JsonFacade.java │ │ │ ├── NotifyRequest.java │ │ │ ├── ThreadDetailState.java │ │ │ └── ThreadPoolConfigChange.java │ │ │ ├── boot │ │ │ ├── AgentPackageNotFoundException.java │ │ │ ├── AgentPackagePath.java │ │ │ ├── ClassCacheMode.java │ │ │ └── DefaultNamedThreadFactory.java │ │ │ ├── conf │ │ │ ├── Config.java │ │ │ ├── ConfigNotFoundException.java │ │ │ ├── Constants.java │ │ │ └── RuntimeContextConfiguration.java │ │ │ ├── constant │ │ │ ├── ChangeThreadPoolConstants.java │ │ │ ├── ConfigModifyTypeConstants.java │ │ │ ├── Constants.java │ │ │ ├── HttpHeaderConstants.java │ │ │ ├── HttpMediaType.java │ │ │ ├── HttpMethod.java │ │ │ ├── HttpResponseCode.java │ │ │ └── MagicNumberConstants.java │ │ │ ├── executor │ │ │ ├── ExecutorFactory.java │ │ │ ├── ThreadFactoryBuilder.java │ │ │ ├── ThreadPoolExecutorHolder.java │ │ │ ├── ThreadPoolExecutorRegistry.java │ │ │ ├── ThreadPoolManager.java │ │ │ └── support │ │ │ │ ├── BlockingQueueManager.java │ │ │ │ ├── BlockingQueueTypeEnum.java │ │ │ │ ├── CustomBlockingQueue.java │ │ │ │ ├── CustomRejectedExecutionHandler.java │ │ │ │ ├── RejectedPolicyTypeEnum.java │ │ │ │ ├── ResizableCapacityLinkedBlockingQueue.java │ │ │ │ ├── RunsOldestTaskPolicy.java │ │ │ │ └── SyncPutQueuePolicy.java │ │ │ ├── extension │ │ │ ├── design │ │ │ │ ├── AbstractSubjectCenter.java │ │ │ │ ├── Builder.java │ │ │ │ ├── Observer.java │ │ │ │ └── ObserverMessage.java │ │ │ ├── enums │ │ │ │ ├── DelEnum.java │ │ │ │ ├── EnableEnum.java │ │ │ │ ├── VerifyEnum.java │ │ │ │ └── WebContainerEnum.java │ │ │ ├── function │ │ │ │ ├── Matcher.java │ │ │ │ └── NoArgsConsumer.java │ │ │ └── spi │ │ │ │ ├── ServiceLoaderInstantiationException.java │ │ │ │ ├── ServiceLoaderRegistry.java │ │ │ │ └── SingletonSPI.java │ │ │ ├── handler │ │ │ ├── DynamicThreadPoolAdapterChoose.java │ │ │ ├── ThreadPoolStatusHandler.java │ │ │ ├── TransmittableThreadLocalExecutorAdapter.java │ │ │ ├── TransmittableThreadLocalExecutorServiceAdapter.java │ │ │ └── ZipkinExecutorAdapter.java │ │ │ ├── logging │ │ │ ├── api │ │ │ │ ├── ILog.java │ │ │ │ ├── LogManager.java │ │ │ │ ├── LogResolver.java │ │ │ │ └── NoopLogger.java │ │ │ └── core │ │ │ │ ├── AbstractLogger.java │ │ │ │ ├── Converter.java │ │ │ │ ├── FileWriter.java │ │ │ │ ├── IWriter.java │ │ │ │ ├── JsonLogResolver.java │ │ │ │ ├── JsonLogger.java │ │ │ │ ├── LogEvent.java │ │ │ │ ├── LogLevel.java │ │ │ │ ├── LogMessageHolder.java │ │ │ │ ├── LogOutput.java │ │ │ │ ├── Parser.java │ │ │ │ ├── PatternLogResolver.java │ │ │ │ ├── PatternLogger.java │ │ │ │ ├── ResolverType.java │ │ │ │ ├── SystemOutWriter.java │ │ │ │ ├── WriterFactory.java │ │ │ │ └── converters │ │ │ │ ├── AgentNameConverter.java │ │ │ │ ├── ClassConverter.java │ │ │ │ ├── DateConverter.java │ │ │ │ ├── LevelConverter.java │ │ │ │ ├── LiteralConverter.java │ │ │ │ ├── MessageConverter.java │ │ │ │ ├── ThreadConverter.java │ │ │ │ └── ThrowableConverter.java │ │ │ ├── model │ │ │ ├── GlobalRemotePoolInfo.java │ │ │ ├── IncrementalFieldMetadataProvider.java │ │ │ ├── InstanceInfo.java │ │ │ ├── ManyThreadPoolRunStateInfo.java │ │ │ ├── Result.java │ │ │ ├── ThreadDetailStateInfo.java │ │ │ ├── ThreadPoolAdapterState.java │ │ │ ├── ThreadPoolBaseInfo.java │ │ │ ├── ThreadPoolParameter.java │ │ │ ├── ThreadPoolParameterInfo.java │ │ │ ├── ThreadPoolRunStateInfo.java │ │ │ ├── TokenInfo.java │ │ │ ├── WebIpAndPortInfo.java │ │ │ ├── executor │ │ │ │ ├── ExecutorNotifyProperties.java │ │ │ │ └── ExecutorProperties.java │ │ │ └── register │ │ │ │ ├── DynamicThreadPoolRegisterParameter.java │ │ │ │ ├── DynamicThreadPoolRegisterWrapper.java │ │ │ │ └── notify │ │ │ │ ├── DynamicThreadPoolRegisterCoreNotifyParameter.java │ │ │ │ └── DynamicThreadPoolRegisterServerNotifyParameter.java │ │ │ ├── monitor │ │ │ ├── AbstractMessage.java │ │ │ ├── Message.java │ │ │ ├── MessageRequest.java │ │ │ ├── MessageTypeEnum.java │ │ │ ├── MessageWrapper.java │ │ │ ├── MonitorCollectTypeEnum.java │ │ │ ├── MonitorHandlerTypeEnum.java │ │ │ └── RuntimeMessage.java │ │ │ ├── propertie │ │ │ ├── EnvironmentProperties.java │ │ │ └── IdentifyProperties.java │ │ │ ├── support │ │ │ └── AbstractThreadPoolRuntime.java │ │ │ └── toolkit │ │ │ ├── ArrayUtil.java │ │ │ ├── Assert.java │ │ │ ├── BeanUtil.java │ │ │ ├── BooleanUtil.java │ │ │ ├── ByteConvertUtil.java │ │ │ ├── CalculateUtil.java │ │ │ ├── ClassUtil.java │ │ │ ├── CollectionUtil.java │ │ │ ├── ConditionUtil.java │ │ │ ├── ContentUtil.java │ │ │ ├── DateUtil.java │ │ │ ├── GroupKey.java │ │ │ ├── IdUtil.java │ │ │ ├── IncrementalContentUtil.java │ │ │ ├── IncrementalMd5Util.java │ │ │ ├── IoUtil.java │ │ │ ├── JSONUtil.java │ │ │ ├── JacksonHandler.java │ │ │ ├── Joiner.java │ │ │ ├── MapUtil.java │ │ │ ├── Md5Util.java │ │ │ ├── MemoryUtil.java │ │ │ ├── MessageConvert.java │ │ │ ├── ReflectUtil.java │ │ │ ├── Singleton.java │ │ │ ├── StringUtil.java │ │ │ ├── ThreadPoolExecutorUtil.java │ │ │ ├── ThreadUtil.java │ │ │ ├── UserContext.java │ │ │ ├── VersionUtil.java │ │ │ ├── agent │ │ │ ├── ConfigInitializer.java │ │ │ ├── Length.java │ │ │ ├── PlaceholderConfigurerSupport.java │ │ │ ├── PropertyPlaceholderHelper.java │ │ │ └── RunnableWithExceptionProtection.java │ │ │ ├── http │ │ │ ├── Header.java │ │ │ ├── HttpClientResponse.java │ │ │ ├── HttpUtil.java │ │ │ └── JdkHttpClientResponse.java │ │ │ └── logtracing │ │ │ └── LogMessage.java │ │ └── test │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── common │ │ │ ├── MockitoTests.java │ │ │ ├── executor │ │ │ ├── ExecutorFactoryTest.java │ │ │ ├── ThreadFactoryBuilderTest │ │ │ ├── ThreadPoolExecutorUtilTest │ │ │ ├── ThreadPoolManagerTest.java │ │ │ ├── integration │ │ │ │ └── QueueSpiIntegrationTest.java │ │ │ └── support │ │ │ │ ├── BlockingQueueSpiTest.java │ │ │ │ ├── BlockingQueueTypeEnumTest.java │ │ │ │ ├── RejectedPolicyTypeEnumTest.java │ │ │ │ ├── ResizableCapacityLinkedBlockingQueueTest.java │ │ │ │ ├── RunsOldestTaskPolicyTest.java │ │ │ │ ├── SyncPutQueuePolicyTest.java │ │ │ │ └── ThreadPoolExecutorUtilTest.java │ │ │ ├── extension │ │ │ └── design │ │ │ │ └── AbstractSubjectCenterTest.java │ │ │ ├── function │ │ │ ├── MatcherFunctionTest.java │ │ │ └── NoArgsConsumerTest.java │ │ │ └── toolkit │ │ │ ├── ArrayUtilTest.java │ │ │ ├── AssertTest.java │ │ │ ├── BeanUtilTest.java │ │ │ ├── BooleanUtilTest.java │ │ │ ├── ByteConvertUtilTest.java │ │ │ ├── CalculateUtilTest.java │ │ │ ├── ClassUtilTest.java │ │ │ ├── CollectionUtilTest.java │ │ │ ├── ConditionUtilTest.java │ │ │ ├── ContentUtilTest.java │ │ │ ├── ExtensibilityTest.java │ │ │ ├── FieldVersionControlTest.java │ │ │ ├── GroupKeyTest.java │ │ │ ├── IdUtilTest.java │ │ │ ├── IoUtilTest.java │ │ │ ├── JSONUtilTest.java │ │ │ ├── JacksonHandlerTest.java │ │ │ ├── MapUtilTest.java │ │ │ ├── Md5UtilTest.java │ │ │ ├── MemoryUtilTest.java │ │ │ ├── MessageConvertTest.java │ │ │ ├── MessageWrapperTest │ │ │ ├── ProtocolRigidityTest.java │ │ │ ├── ReflectUtilTest.java │ │ │ ├── SingletonTest.java │ │ │ ├── StringUtilTest.java │ │ │ ├── ThreadUtilTest.java │ │ │ ├── UserContextTest.java │ │ │ ├── http │ │ │ ├── HomeServlet.java │ │ │ ├── HttpUtilsTest.java │ │ │ └── LoginServlet.java │ │ │ └── logtracing │ │ │ └── LogMessageTest.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── cn.hippo4j.common.executor.support.CustomBlockingQueue ├── pom.xml └── toolkit │ └── pom.xml ├── kernel ├── alarm │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── threadpool │ │ └── alarm │ │ ├── api │ │ └── ThreadPoolCheckAlarm.java │ │ ├── handler │ │ └── DefaultThreadPoolCheckAlarmHandler.java │ │ └── toolkit │ │ └── ExecutorTraceContextUtil.java ├── dynamic │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── threadpool │ │ │ └── dynamic │ │ │ └── api │ │ │ ├── BootstrapPropertiesInterface.java │ │ │ └── ThreadPoolDynamicRefresh.java │ ├── core │ │ └── pom.xml │ ├── mode │ │ ├── config │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── threadpool │ │ │ │ └── dynamic │ │ │ │ └── mode │ │ │ │ └── config │ │ │ │ ├── parser │ │ │ │ ├── AbstractConfigParser.java │ │ │ │ ├── ConfigFileTypeEnum.java │ │ │ │ ├── ConfigParser.java │ │ │ │ ├── ConfigParserHandler.java │ │ │ │ ├── JsonConfigParser.java │ │ │ │ ├── PropertiesConfigParser.java │ │ │ │ └── YamlConfigParser.java │ │ │ │ ├── properties │ │ │ │ ├── AdapterExecutorProperties.java │ │ │ │ ├── BootstrapConfigProperties.java │ │ │ │ ├── MonitorProperties.java │ │ │ │ ├── NotifyPlatformProperties.java │ │ │ │ └── WebExecutorProperties.java │ │ │ │ └── refresher │ │ │ │ ├── AbstractConfigThreadPoolDynamicRefresh.java │ │ │ │ └── BootstrapConfigPropertiesBinderAdapter.java │ │ ├── pom.xml │ │ └── server │ │ │ └── pom.xml │ └── pom.xml ├── message │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── threadpool │ │ │ └── message │ │ │ └── api │ │ │ ├── AlarmControlDTO.java │ │ │ ├── NotifyConfigBuilder.java │ │ │ ├── NotifyConfigDTO.java │ │ │ ├── NotifyPlatformEnum.java │ │ │ ├── NotifyTypeEnum.java │ │ │ └── ThreadPoolNotifyDTO.java │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── cn │ │ │ │ │ └── hippo4j │ │ │ │ │ └── threadpool │ │ │ │ │ └── message │ │ │ │ │ └── core │ │ │ │ │ ├── constant │ │ │ │ │ ├── DingAlarmConstants.java │ │ │ │ │ ├── LarkAlarmConstants.java │ │ │ │ │ └── WeChatAlarmConstants.java │ │ │ │ │ ├── platform │ │ │ │ │ ├── DingSendMessageHandler.java │ │ │ │ │ ├── LarkSendMessageHandler.java │ │ │ │ │ ├── WeChatSendMessageHandler.java │ │ │ │ │ └── base │ │ │ │ │ │ ├── AbstractRobotSendMessageHandler.java │ │ │ │ │ │ ├── RobotMessageActualContent.java │ │ │ │ │ │ └── RobotMessageExecuteDTO.java │ │ │ │ │ ├── request │ │ │ │ │ ├── AlarmNotifyRequest.java │ │ │ │ │ ├── ChangeParameterNotifyRequest.java │ │ │ │ │ ├── RobotAlarmNotifyRequest.java │ │ │ │ │ ├── RobotChangeParameterNotifyRequest.java │ │ │ │ │ ├── ThreadPoolNotifyRequest.java │ │ │ │ │ ├── WebChangeParameterNotifyRequest.java │ │ │ │ │ └── base │ │ │ │ │ │ └── BaseNotifyRequest.java │ │ │ │ │ └── service │ │ │ │ │ ├── AlarmControlHandler.java │ │ │ │ │ ├── DefaultThreadPoolConfigChangeHandler.java │ │ │ │ │ ├── GlobalNotifyAlarmManage.java │ │ │ │ │ ├── SendMessageHandler.java │ │ │ │ │ ├── ThreadPoolBaseSendMessageService.java │ │ │ │ │ ├── ThreadPoolNotifyAlarm.java │ │ │ │ │ ├── ThreadPoolSendMessageService.java │ │ │ │ │ └── WebThreadPoolConfigChangeHandler.java │ │ │ └── resources │ │ │ │ └── message │ │ │ │ └── robot │ │ │ │ └── dynamic-thread-pool │ │ │ │ ├── ding-alarm.txt │ │ │ │ ├── ding-config.txt │ │ │ │ ├── lark-alarm-timeout-replace.json │ │ │ │ ├── lark-alarm-trace-replace.json │ │ │ │ ├── lark-alarm.json │ │ │ │ ├── lark-config.json │ │ │ │ ├── wechat-alarm.txt │ │ │ │ └── wechat-config.txt │ │ │ └── test │ │ │ └── java │ │ │ └── cn │ │ │ └── hippo4j │ │ │ └── message │ │ │ └── service │ │ │ └── AlarmControlHandlerTest.java │ ├── mode │ │ ├── config │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── server │ │ │ └── pom.xml │ └── pom.xml ├── monitor │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── threadpool │ │ └── monitor │ │ ├── api │ │ ├── AdapterThreadPoolMonitor.java │ │ ├── DynamicThreadPoolMonitor.java │ │ ├── ThreadPoolMonitor.java │ │ └── WebThreadPoolMonitor.java │ │ └── support │ │ ├── MonitorThreadPoolTypeEnum.java │ │ └── MonitorTypeEnum.java └── pom.xml ├── lombok.config ├── pom.xml ├── starters ├── pom.xml └── threadpool │ ├── adapter │ ├── alibaba-dubbo │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── alibaba │ │ │ │ └── dubbo │ │ │ │ └── AlibabaDubboAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── all │ │ └── pom.xml │ ├── dubbo │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── dubbo │ │ │ │ └── DubboAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── dubbox │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── dubbo │ │ │ │ └── DubboxAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── hystrix │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── hystrix │ │ │ │ └── HystrixAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── kafka │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── kafka │ │ │ │ └── KafkaAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── pom.xml │ ├── rabbitmq │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── rabbitmq │ │ │ │ └── RabbitMQAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── rocketmq │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── rocketmq │ │ │ │ └── RocketMQAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── stream-rabbitmq │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── springcloud │ │ │ │ └── stream │ │ │ │ └── rabbitmq │ │ │ │ └── SpringCloudStreamRabbitMQAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── stream-rocketmq │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── springcloud │ │ │ │ └── stream │ │ │ │ └── rocketmq │ │ │ │ └── SpringCloudStreamRocketMQAdapterAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── web │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ ├── springboot │ │ │ └── starter │ │ │ │ └── adapter │ │ │ │ └── web │ │ │ │ ├── WebAdapterConfiguration.java │ │ │ │ └── WebThreadPoolHandlerConfiguration.java │ │ │ └── springboot3 │ │ │ └── starter │ │ │ └── adapter │ │ │ └── web │ │ │ ├── WebAdapterConfiguration.java │ │ │ └── WebThreadPoolHandlerConfiguration.java │ │ └── resources │ │ └── META-INF │ │ ├── spring.factories │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── config-spring-boot-1x │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── cn │ │ │ └── hippo4j │ │ │ │ └── config │ │ │ │ └── springboot1x │ │ │ │ └── starter │ │ │ │ ├── config │ │ │ │ ├── ConfigHandlerAutoConfiguration.java │ │ │ │ └── WebThreadPoolHandlerConfiguration1x.java │ │ │ │ ├── refresher │ │ │ │ └── SpringBoot1xBootstrapConfigPropertiesBinderAdapter.java │ │ │ │ └── web │ │ │ │ ├── AbstractWebThreadPoolService1x.java │ │ │ │ ├── jetty │ │ │ │ └── JettyWebThreadPoolHandler1x.java │ │ │ │ ├── tomcat │ │ │ │ └── TomcatWebThreadPoolHandler1x.java │ │ │ │ └── undertow │ │ │ │ └── UndertowWebThreadPoolHandler1x.java │ │ └── org │ │ │ └── springframework │ │ │ └── boot │ │ │ └── bind │ │ │ └── CustomPropertyNamePatternsMatcher.java │ │ └── resources │ │ └── META-INF │ │ └── spring.factories │ ├── config │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── config │ │ │ └── springboot │ │ │ └── starter │ │ │ ├── config │ │ │ ├── ConfigHandlerConfiguration.java │ │ │ ├── DynamicThreadPoolAutoConfiguration.java │ │ │ ├── MonitorConfiguration.java │ │ │ └── SpringBootstrapConfigProperties.java │ │ │ ├── monitor │ │ │ └── ThreadPoolMonitorExecutor.java │ │ │ ├── notify │ │ │ └── ConfigModeNotifyConfigBuilder.java │ │ │ ├── refresher │ │ │ ├── AbstractConfigThreadPoolDynamicRefresh.java │ │ │ ├── ApolloRefresherHandler.java │ │ │ ├── ConsulRefresherHandler.java │ │ │ ├── DefaultBootstrapConfigPropertiesBinderAdapter.java │ │ │ ├── EtcdRefresherHandler.java │ │ │ ├── NacosCloudRefresherHandler.java │ │ │ ├── NacosRefresherHandler.java │ │ │ ├── PolarisRefresherHandler.java │ │ │ ├── ZookeeperRefresherHandler.java │ │ │ └── event │ │ │ │ ├── AbstractRefreshListener.java │ │ │ │ ├── AdapterExecutorsRefreshListener.java │ │ │ │ ├── DynamicThreadPoolRefreshListener.java │ │ │ │ ├── PlatformsRefreshListener.java │ │ │ │ ├── RefreshListener.java │ │ │ │ ├── ThreadPoolConfigDynamicRefreshEvent.java │ │ │ │ ├── ThreadPoolConfigDynamicRefreshEventOrder.java │ │ │ │ └── WebExecutorRefreshListener.java │ │ │ └── support │ │ │ ├── DynamicThreadPoolAdapterRegister.java │ │ │ ├── DynamicThreadPoolConfigService.java │ │ │ └── DynamicThreadPoolPostProcessor.java │ │ └── resources │ │ └── META-INF │ │ ├── spring.factories │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── monitor │ ├── hippo4j-spring-boot-starter-monitor-elasticsearch │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── monitor │ │ │ │ └── elasticsearch │ │ │ │ └── ElasticSearchMonitorAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── hippo4j-spring-boot-starter-monitor-local-log │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── monitor │ │ │ │ └── local │ │ │ │ └── log │ │ │ │ └── LocalLogMonitorAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── hippo4j-spring-boot-starter-monitor-micrometer │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── cn │ │ │ │ └── hippo4j │ │ │ │ └── springboot │ │ │ │ └── starter │ │ │ │ └── monitor │ │ │ │ └── micrometer │ │ │ │ └── MicrometerMonitorAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── pom.xml │ ├── pom.xml │ └── server │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── cn │ │ └── hippo4j │ │ └── springboot │ │ └── starter │ │ ├── config │ │ ├── BootstrapProperties.java │ │ ├── DiscoveryConfiguration.java │ │ ├── DynamicThreadPoolAutoConfiguration.java │ │ ├── MonitorProperties.java │ │ └── NettyClientConfiguration.java │ │ ├── controller │ │ ├── ThreadPoolAdapterController.java │ │ ├── WebThreadPoolController.java │ │ └── WebThreadPoolRunStateController.java │ │ ├── core │ │ ├── BaseThreadDetailStateHandler.java │ │ ├── CacheData.java │ │ ├── ClientShutdown.java │ │ ├── ClientWorker.java │ │ ├── ConfigEmptyAnalyzer.java │ │ ├── ConfigService.java │ │ ├── DiscoveryClient.java │ │ ├── DynamicThreadPoolSubscribeConfig.java │ │ ├── Listener.java │ │ ├── ServerThreadPoolDynamicRefresh.java │ │ ├── ShutdownExecuteException.java │ │ ├── ThreadPoolAdapterRegister.java │ │ └── ThreadPoolSubscribeCallback.java │ │ ├── event │ │ ├── ApplicationContentPostProcessor.java │ │ └── ApplicationRefreshedEvent.java │ │ ├── monitor │ │ ├── ReportingEventExecutor.java │ │ ├── collect │ │ │ ├── Collector.java │ │ │ └── RunTimeInfoCollector.java │ │ └── send │ │ │ ├── MessageSender.java │ │ │ ├── http │ │ │ └── HttpConnectSender.java │ │ │ └── netty │ │ │ ├── NettyConnectSender.java │ │ │ └── SenderHandler.java │ │ ├── notify │ │ └── ServerModeNotifyConfigBuilder.java │ │ ├── provider │ │ └── InstanceInfoProviderFactory.java │ │ ├── remote │ │ ├── AbstractHealthCheck.java │ │ ├── HttpAgent.java │ │ ├── HttpScheduledHealthCheck.java │ │ ├── ServerHealthCheck.java │ │ ├── ServerHttpAgent.java │ │ ├── ServerListManager.java │ │ └── ServerNettyAgent.java │ │ ├── security │ │ └── SecurityProxy.java │ │ ├── support │ │ ├── AdaptedThreadPoolDestroyPostProcessor.java │ │ ├── DynamicThreadPoolConfigService.java │ │ ├── DynamicThreadPoolPostProcessor.java │ │ └── ThreadPoolPluginRegisterPostProcessor.java │ │ ├── toolkit │ │ └── CloudCommonIdUtil.java │ │ └── wrapper │ │ └── ManagerListenerWrapper.java │ └── resources │ └── META-INF │ ├── additional-spring-configuration-metadata.json │ ├── spring.factories │ └── spring │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports ├── tests └── pom.xml └── threadpool ├── adapter ├── alibaba-dubbo │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── alibaba │ │ └── dubbo │ │ └── AlibabaDubboThreadPoolAdapter.java ├── base │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── base │ │ ├── ThreadPoolAdapter.java │ │ ├── ThreadPoolAdapterBeanContainer.java │ │ ├── ThreadPoolAdapterCacheConfig.java │ │ ├── ThreadPoolAdapterParameter.java │ │ └── ThreadPoolAdapterRegisterAction.java ├── dubbo │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── dubbo │ │ └── DubboThreadPoolAdapter.java ├── dubbox │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── dubbo │ │ └── DubboxThreadPoolAdapter.java ├── hystrix │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── hystrix │ │ ├── AbstractHystrixThreadPoolAdapter.java │ │ ├── HystrixThreadPoolAdapter4Config.java │ │ ├── HystrixThreadPoolAdapter4Server.java │ │ └── ThreadPoolAdapterScheduler.java ├── kafka │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── kafka │ │ └── KafkaThreadPoolAdapter.java ├── pom.xml ├── rabbitmq │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── rabbitmq │ │ └── RabbitMQThreadPoolAdapter.java ├── rocketmq │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── rocketmq │ │ └── RocketMQThreadPoolAdapter.java ├── stream-rabbitmq │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── springcloud │ │ └── stream │ │ └── rabbitmq │ │ └── SpringCloudStreamRabbitMQThreadPoolAdapter.java ├── stream-rocketmq │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── adapter │ │ └── springcloud │ │ └── stream │ │ └── rocketmq │ │ └── SpringCloudStreamRocketMQThreadPoolAdapter.java └── web │ ├── pom.xml │ └── src │ └── main │ └── java │ └── cn │ └── hippo4j │ └── adapter │ └── web │ ├── AbstractWebThreadPoolService.java │ ├── DefaultAbstractWebThreadPoolService.java │ ├── IWebThreadPoolHandlerSupport.java │ ├── WebIpAndPortHolder.java │ ├── WebThreadPoolHandlerChoose.java │ ├── WebThreadPoolRunStateHandler.java │ ├── WebThreadPoolService.java │ ├── jetty │ ├── DefaultJettyWebThreadPoolHandler.java │ ├── JettyWebThreadPoolHandlerAdapt.java │ └── JettyWebThreadPoolHandlerSupport.java │ ├── tomcat │ ├── DefaultTomcatWebThreadPoolHandler.java │ ├── TomcatWebThreadPoolHandlerAdapt.java │ └── TomcatWebThreadPoolHandlerSupport.java │ └── undertow │ ├── DefaultUndertowWebThreadPoolHandler.java │ ├── UndertowWebThreadPoolHandlerAdapt.java │ └── UndertowWebThreadPoolHandlerSupport.java ├── console-new ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── README.md ├── craco.config.js ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.tsx │ ├── components │ │ ├── header │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── icon │ │ │ └── index.tsx │ │ ├── layout-com │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── table │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── theme-com │ │ │ └── index.tsx │ │ └── with-button │ │ │ └── index.tsx │ ├── config │ │ ├── i18n │ │ │ ├── index.ts │ │ │ └── locales │ │ │ │ ├── constants.ts │ │ │ │ ├── en.ts │ │ │ │ └── zh.ts │ │ └── theme │ │ │ ├── dark-algorithm.ts │ │ │ ├── default-algnorithm.ts │ │ │ ├── default-theme.d.ts │ │ │ └── index.ts │ ├── context │ │ └── index.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── useFormToUrl.ts │ │ ├── useTransLate.ts │ │ └── useUrlSet.ts │ ├── index.module.less │ ├── index.tsx │ ├── page │ │ ├── about │ │ │ ├── index.tsx │ │ │ └── router.tsx │ │ ├── home │ │ │ ├── components │ │ │ │ └── detail │ │ │ │ │ └── index.tsx │ │ │ ├── constans.ts │ │ │ ├── index.tsx │ │ │ ├── router.tsx │ │ │ ├── service.ts │ │ │ └── type.ts │ │ ├── item │ │ │ ├── create.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── router.tsx │ │ │ └── service.ts │ │ ├── log │ │ │ ├── detail.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── router.tsx │ │ │ └── service.ts │ │ ├── login │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── router.ts │ │ │ └── service.ts │ │ ├── search │ │ │ └── index.tsx │ │ ├── tenant │ │ │ ├── create.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── router.tsx │ │ │ └── service.ts │ │ ├── thread-pool-monitor │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ └── router.ts │ │ ├── thread-pool │ │ │ ├── constants.ts │ │ │ ├── index.tsx │ │ │ ├── router.ts │ │ │ ├── service.ts │ │ │ └── type.ts │ │ └── user │ │ │ ├── create.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── router.tsx │ │ │ └── service.ts │ ├── react-app-env.d.ts │ ├── route │ │ └── index.tsx │ ├── typings │ │ └── index.ts │ └── utils │ │ ├── common │ │ └── index.ts │ │ ├── index.ts │ │ └── request │ │ └── index.ts ├── tsconfig.json └── yarn.lock ├── console ├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── plopfile.js ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── hippo4j.gif │ └── index.html ├── src │ ├── App.vue │ ├── api │ │ ├── dashborad.js │ │ ├── hippo4j-adapterThreadPool.js │ │ ├── hippo4j-instance.js │ │ ├── hippo4j-item.js │ │ ├── hippo4j-log.js │ │ ├── hippo4j-monitor.js │ │ ├── hippo4j-notify.js │ │ ├── hippo4j-tenant.js │ │ ├── hippo4j-threadPool.js │ │ ├── hippo4j-user.js │ │ ├── metadata-query.js │ │ ├── remote-search.js │ │ ├── role.js │ │ ├── user.js │ │ └── verify.js │ ├── assets │ │ ├── 401_images │ │ │ └── 401.gif │ │ ├── 404_images │ │ │ ├── 404.png │ │ │ └── 404_cloud.png │ │ └── custom-theme │ │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ │ └── index.css │ ├── components │ │ ├── BackToTop │ │ │ └── index.vue │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Charts │ │ │ ├── Keyboard.vue │ │ │ ├── LineMarker.vue │ │ │ ├── MixChart.vue │ │ │ └── mixins │ │ │ │ └── resize.js │ │ ├── ErrorLog │ │ │ └── index.vue │ │ ├── GithubCorner │ │ │ └── index.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ ├── HeaderSearch │ │ │ └── index.vue │ │ ├── ImageCropper │ │ │ ├── index.vue │ │ │ └── utils │ │ │ │ ├── data2blob.js │ │ │ │ ├── effectRipple.js │ │ │ │ ├── language.js │ │ │ │ └── mimes.js │ │ ├── JsonEditor │ │ │ └── index.vue │ │ ├── Pagination │ │ │ └── index.vue │ │ ├── RightPanel │ │ │ └── index.vue │ │ ├── Screenfull │ │ │ └── index.vue │ │ ├── Sticky │ │ │ └── index.vue │ │ └── SvgIcon │ │ │ └── index.vue │ ├── directive │ │ ├── clipboard │ │ │ ├── clipboard.js │ │ │ └── index.js │ │ ├── el-drag-dialog │ │ │ ├── drag.js │ │ │ └── index.js │ │ ├── el-table │ │ │ ├── adaptive.js │ │ │ └── index.js │ │ ├── permission │ │ │ ├── index.js │ │ │ └── permission.js │ │ ├── sticky.js │ │ └── waves │ │ │ ├── index.js │ │ │ ├── waves.css │ │ │ └── waves.js │ ├── filters │ │ └── index.js │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── 404.svg │ │ │ ├── audit.svg │ │ │ ├── dashboard2.svg │ │ │ ├── item.svg │ │ │ ├── item_logo4.svg │ │ │ ├── json.svg │ │ │ ├── language.svg │ │ │ ├── lessee.svg │ │ │ ├── link.svg │ │ │ ├── log.svg │ │ │ ├── monitor.svg │ │ │ ├── notify.svg │ │ │ ├── other.svg │ │ │ ├── password.svg │ │ │ ├── pool.svg │ │ │ ├── tenant_logo2.svg │ │ │ ├── threadPool_logo1.svg │ │ │ ├── threadPool_logo2.svg │ │ │ ├── user.svg │ │ │ └── vessel.svg │ │ └── svgo.yml │ ├── layout │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Navbar.vue │ │ │ ├── Sidebar │ │ │ │ ├── FixiOSBug.js │ │ │ │ ├── Item.vue │ │ │ │ ├── Link.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── SidebarItem.vue │ │ │ │ └── index.vue │ │ │ └── index.js │ │ ├── index.vue │ │ └── mixin │ │ │ └── ResizeHandler.js │ ├── locale │ │ ├── config.js │ │ ├── index.js │ │ ├── lang │ │ │ ├── en.js │ │ │ └── zh.js │ │ └── langChange.vue │ ├── main.js │ ├── permission.js │ ├── router │ │ ├── index.js │ │ └── modules │ │ │ └── tool.js │ ├── settings.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── errorLog.js │ │ │ ├── permission.js │ │ │ ├── settings.js │ │ │ ├── tenant.js │ │ │ └── user.js │ ├── styles │ │ ├── btn.scss │ │ ├── element-ui.scss │ │ ├── element-variables.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── sidebar.scss │ │ ├── transition.scss │ │ └── variables.scss │ ├── utils │ │ ├── aes-util.js │ │ ├── auth.js │ │ ├── clipboard.js │ │ ├── error-log.js │ │ ├── get-page-title.js │ │ ├── i18n-utils.js │ │ ├── index.js │ │ ├── open-window.js │ │ ├── permission.js │ │ ├── request.js │ │ ├── scroll-to.js │ │ └── validate.js │ └── views │ │ ├── dashboard │ │ ├── admin │ │ │ ├── components │ │ │ │ ├── BarChart.vue │ │ │ │ ├── BoxCard.vue │ │ │ │ ├── LineChart.vue │ │ │ │ ├── PanelGroup.vue │ │ │ │ ├── PieChart.vue │ │ │ │ ├── RaddarChart.vue │ │ │ │ ├── TodoList │ │ │ │ │ ├── Todo.vue │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── TransactionTable.vue │ │ │ │ └── mixins │ │ │ │ │ └── resize.js │ │ │ └── index.vue │ │ └── index.vue │ │ ├── error-page │ │ ├── 401.vue │ │ └── 404.vue │ │ ├── hippo4j │ │ ├── instance │ │ │ └── index.vue │ │ ├── item │ │ │ └── index.vue │ │ ├── log │ │ │ └── index.vue │ │ ├── monitor │ │ │ ├── components │ │ │ │ ├── LineChart.vue │ │ │ │ ├── PieChart.vue │ │ │ │ ├── RaddarChart.vue │ │ │ │ └── mixins │ │ │ │ │ └── resize.js │ │ │ └── index.vue │ │ ├── notify │ │ │ └── index.vue │ │ ├── other │ │ │ ├── alibaba-dubbo │ │ │ │ └── index.vue │ │ │ ├── dubbo │ │ │ │ └── index.vue │ │ │ ├── hystrix │ │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── rabbitmq-stream │ │ │ │ └── index.vue │ │ │ ├── rabbitmq │ │ │ │ └── index.vue │ │ │ ├── rocketmq-stream │ │ │ │ └── index.vue │ │ │ └── rocketmq │ │ │ │ └── index.vue │ │ ├── server │ │ │ ├── index.vue │ │ │ ├── jetty │ │ │ │ └── index.vue │ │ │ ├── tomcat │ │ │ │ └── index.vue │ │ │ └── undertow │ │ │ │ └── index.vue │ │ ├── tenant │ │ │ └── index.vue │ │ ├── threadpool │ │ │ └── index.vue │ │ ├── user │ │ │ └── index.vue │ │ └── verify │ │ │ └── index.vue │ │ ├── login │ │ ├── auth-redirect.vue │ │ ├── components │ │ │ └── SocialSignin.vue │ │ └── index.vue │ │ ├── permission │ │ ├── components │ │ │ └── SwitchRoles.vue │ │ ├── directive.vue │ │ ├── page.vue │ │ └── role.vue │ │ ├── profile │ │ ├── components │ │ │ └── Account.vue │ │ └── index.vue │ │ ├── redirect │ │ └── index.vue │ │ └── tool │ │ └── jsonFormat.vue └── vue.config.js ├── core ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── core │ │ │ ├── api │ │ │ └── ClientNetworkService.java │ │ │ ├── config │ │ │ ├── ApplicationContextHolder.java │ │ │ ├── ConfigEmptyException.java │ │ │ └── UtilAutoConfiguration.java │ │ │ ├── enable │ │ │ ├── BeforeCheckConfiguration.java │ │ │ ├── EnableDynamicThreadPool.java │ │ │ └── MarkerConfiguration.java │ │ │ ├── executor │ │ │ ├── DynamicThreadPool.java │ │ │ ├── DynamicThreadPoolExecutor.java │ │ │ ├── DynamicThreadPoolWrapper.java │ │ │ ├── ExtensibleThreadPoolExecutor.java │ │ │ ├── SpringDynamicThreadPool.java │ │ │ ├── handler │ │ │ │ └── DynamicThreadPoolBannerHandler.java │ │ │ ├── manage │ │ │ │ └── GlobalThreadPoolManage.java │ │ │ ├── plugin │ │ │ │ ├── ExecuteAwarePlugin.java │ │ │ │ ├── PluginRuntime.java │ │ │ │ ├── RejectedAwarePlugin.java │ │ │ │ ├── ShutdownAwarePlugin.java │ │ │ │ ├── TaskAwarePlugin.java │ │ │ │ ├── ThreadPoolPlugin.java │ │ │ │ ├── impl │ │ │ │ │ ├── AbstractTaskTimerPlugin.java │ │ │ │ │ ├── TaskDecoratorPlugin.java │ │ │ │ │ ├── TaskRejectCountRecordPlugin.java │ │ │ │ │ ├── TaskRejectNotifyAlarmPlugin.java │ │ │ │ │ ├── TaskTimeRecordPlugin.java │ │ │ │ │ ├── TaskTimeoutNotifyAlarmPlugin.java │ │ │ │ │ └── ThreadPoolExecutorShutdownPlugin.java │ │ │ │ └── manager │ │ │ │ │ ├── DefaultGlobalThreadPoolPluginManager.java │ │ │ │ │ ├── DefaultThreadPoolPluginManager.java │ │ │ │ │ ├── DefaultThreadPoolPluginRegistrar.java │ │ │ │ │ ├── EmptyThreadPoolPluginManager.java │ │ │ │ │ ├── GlobalThreadPoolPluginManager.java │ │ │ │ │ ├── ThreadPoolPluginManager.java │ │ │ │ │ ├── ThreadPoolPluginRegistrar.java │ │ │ │ │ └── ThreadPoolPluginSupport.java │ │ │ ├── provider │ │ │ │ └── CommonDynamicThreadPoolProviderFactory.java │ │ │ ├── proxy │ │ │ │ ├── RejectedProxyInvocationHandler.java │ │ │ │ └── RejectedProxyUtil.java │ │ │ ├── state │ │ │ │ └── ThreadPoolRunStateHandler.java │ │ │ └── support │ │ │ │ ├── AbstractBuildThreadPoolTemplate.java │ │ │ │ ├── ThreadPoolBuilder.java │ │ │ │ ├── adpter │ │ │ │ ├── DynamicThreadPoolAdapterChoose.java │ │ │ │ ├── ThreadPoolTaskExecutorAdapter.java │ │ │ │ ├── TransmittableThreadLocalExecutorAdapter.java │ │ │ │ ├── TransmittableThreadLocalExecutorServiceAdapter.java │ │ │ │ └── ZipkinExecutorAdapter.java │ │ │ │ ├── service │ │ │ │ ├── AbstractDynamicThreadPoolService.java │ │ │ │ └── DynamicThreadPoolService.java │ │ │ │ └── spi │ │ │ │ └── DynamicThreadPoolAdapterSPI.java │ │ │ ├── extension │ │ │ ├── IExtension.java │ │ │ ├── IExtensionRequest.java │ │ │ ├── annotation │ │ │ │ └── Realization.java │ │ │ ├── config │ │ │ │ └── ExtensionRegisterBootstrap.java │ │ │ ├── initialize │ │ │ │ └── Hippo4jDynamicThreadPoolInitializer.java │ │ │ ├── reducer │ │ │ │ ├── AllMatch.java │ │ │ │ ├── AnyMatch.java │ │ │ │ ├── FirstOf.java │ │ │ │ ├── None.java │ │ │ │ ├── Reducer.java │ │ │ │ └── Reducers.java │ │ │ └── support │ │ │ │ ├── ExtensionAutoConfiguration.java │ │ │ │ ├── ExtensionCallback.java │ │ │ │ ├── ExtensionInvoker.java │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ ├── IExtensionRegistry.java │ │ │ │ └── ReduceType.java │ │ │ └── toolkit │ │ │ ├── DynamicThreadPoolAnnotationUtil.java │ │ │ ├── FileUtil.java │ │ │ ├── IdentifyUtil.java │ │ │ ├── SystemClock.java │ │ │ └── inet │ │ │ ├── InetUtils.java │ │ │ └── InetUtilsProperties.java │ └── resources │ │ └── META-INF │ │ ├── spring.factories │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── test │ ├── java │ ├── brave │ │ └── internal │ │ │ └── WrappingExecutorService.java │ └── cn │ │ └── hippo4j │ │ └── core │ │ ├── CustomWrappingExecutorService.java │ │ ├── adapter │ │ └── ZipkinExecutorAdapterTest.java │ │ ├── executor │ │ ├── DynamicThreadPoolExecutorTest.java │ │ ├── ExtensibleThreadPoolExecutorTest.java │ │ ├── handler │ │ │ └── DynamicThreadPoolBannerHandlerTest.java │ │ ├── plugin │ │ │ ├── PluginRuntimeTest.java │ │ │ ├── ThreadPoolPluginTest.java │ │ │ ├── impl │ │ │ │ ├── TaskDecoratorPluginTest.java │ │ │ │ ├── TaskRejectCountRecordPluginTest.java │ │ │ │ ├── TaskRejectNotifyAlarmPluginTest.java │ │ │ │ ├── TaskTimeRecordPluginTest.java │ │ │ │ ├── TaskTimeoutNotifyAlarmPluginTest.java │ │ │ │ └── ThreadPoolExecutorShutdownPluginTest.java │ │ │ └── manager │ │ │ │ ├── DefaultGlobalThreadPoolPluginManagerTest.java │ │ │ │ ├── DefaultThreadPoolPluginManagerTest.java │ │ │ │ ├── DefaultThreadPoolPluginRegistrarTest.java │ │ │ │ ├── EmptyThreadPoolPluginManagerTest.java │ │ │ │ └── ThreadPoolPluginSupportTest.java │ │ ├── proxy │ │ │ └── RejectedProxyInvocationHandlerTest.java │ │ ├── state │ │ │ ├── AbstractThreadPoolRuntimeTest.java │ │ │ └── ThreadPoolRunStateHandlerTest.java │ │ └── support │ │ │ └── AbstractBuildThreadPoolTemplateTest.java │ │ ├── extension │ │ ├── ExtensionInvokerTest.java │ │ ├── anymatch │ │ │ ├── AnyMatchExtImplA.java │ │ │ ├── AnyMatchExtImplB.java │ │ │ └── IAnyMatchExtension.java │ │ ├── firstof │ │ │ ├── FirstOfExtImplA.java │ │ │ ├── FirstOfExtImplB.java │ │ │ └── IFirstOfExtension.java │ │ └── spi │ │ │ ├── IOldSpi.java │ │ │ └── IOldSpiImplA.java │ │ ├── spi │ │ ├── DynamicThreadPoolServiceLoaderTest.java │ │ ├── MyArrayBlockingQueue.java │ │ ├── TestInterfaceSPI.java │ │ ├── TestInterfaceSPIImpl.java │ │ ├── TestSingletonInterfaceSPI.java │ │ └── TestSingletonInterfaceSPIImpl.java │ │ └── toolkit │ │ └── FileUtilTest.java │ └── resources │ ├── META-INF │ └── services │ │ ├── cn.hippo4j.common.executor.support.CustomBlockingQueue │ │ ├── cn.hippo4j.core.extension.spi.IOldSpi │ │ ├── cn.hippo4j.core.spi.TestInterfaceSPI │ │ └── cn.hippo4j.core.spi.TestSingletonInterfaceSPI │ └── test │ └── test_utf8.txt ├── message ├── pom.xml └── src │ └── main │ └── java │ └── cn │ └── hippo4j │ └── message │ └── config │ ├── MessageConfiguration.java │ └── ThreadPoolBaseSendMessageServiceInitializer.java ├── monitor ├── base │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── monitor │ │ └── base │ │ ├── AbstractAdapterThreadPoolMonitor.java │ │ ├── AbstractDynamicThreadPoolMonitor.java │ │ └── AbstractWebThreadPoolMonitor.java ├── elasticsearch │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── hippo4j │ │ │ └── monitor │ │ │ └── elasticsearch │ │ │ ├── AdapterThreadPoolElasticSearchMonitorHandler.java │ │ │ ├── DynamicThreadPoolElasticSearchMonitorHandler.java │ │ │ ├── ElasticSearchClientHolder.java │ │ │ ├── WebThreadPoolElasticSearchMonitorHandler.java │ │ │ └── model │ │ │ └── ElasticSearchThreadPoolRunStateInfo.java │ │ └── resources │ │ └── mapping.json ├── local-log │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── monitor │ │ └── local │ │ └── log │ │ ├── AdapterThreadPoolLocalLogMonitorHandler.java │ │ ├── DynamicThreadPoolLocalLogMonitorHandler.java │ │ └── WebThreadPoolLocalLogMonitorHandler.java ├── micrometer │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── monitor │ │ └── micrometer │ │ ├── AdapterThreadPoolMicrometerMonitorHandler.java │ │ ├── DynamicThreadPoolMicrometerMonitorHandler.java │ │ └── WebThreadPoolMicrometerMonitorHandler.java └── pom.xml ├── pom.xml ├── rpc ├── pom.xml └── src │ ├── main │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── rpc │ │ ├── client │ │ ├── Client.java │ │ ├── ClientSupport.java │ │ └── RPCClient.java │ │ ├── coder │ │ ├── CompactObjectOutputStream.java │ │ └── ObjectEncoder.java │ │ ├── connection │ │ ├── ClientConnection.java │ │ ├── ConnectPoolHolder.java │ │ ├── ServerConnection.java │ │ ├── SimpleClientConnection.java │ │ ├── SimpleConnectPool.java │ │ └── SimpleServerConnection.java │ │ ├── discovery │ │ ├── DiscoveryAdapter.java │ │ └── ServerPort.java │ │ ├── exception │ │ ├── CoderException.java │ │ ├── ConnectionException.java │ │ ├── HandlerNotFoundException.java │ │ ├── OperationException.java │ │ └── TimeOutException.java │ │ ├── handler │ │ ├── AbstractHandlerManager.java │ │ ├── AbstractTakeHandler.java │ │ ├── ClientPoolHandler.java │ │ ├── ClientTakeHandler.java │ │ ├── ConnectHandler.java │ │ ├── ErrorClientHandler.java │ │ ├── ErrorServerHandler.java │ │ ├── HandlerManager.java │ │ ├── ServerBareTakeHandler.java │ │ ├── ServerBiTakeHandler.java │ │ ├── ServerHandler.java │ │ └── ServerTakeHandler.java │ │ ├── model │ │ ├── DefaultRequest.java │ │ ├── DefaultResponse.java │ │ ├── Request.java │ │ └── Response.java │ │ ├── server │ │ ├── RPCServer.java │ │ ├── Server.java │ │ └── ServerSupport.java │ │ └── support │ │ ├── AddressUtil.java │ │ └── ResultHolder.java │ └── test │ └── java │ └── cn │ └── hippo4j │ └── rpc │ ├── client │ ├── CallManager.java │ ├── ClientSupportTest.java │ └── RandomPort.java │ ├── handler │ ├── ClientPoolHandlerTest.java │ ├── ConnectHandlerTest.java │ ├── ConnectPoolHolderTest.java │ ├── ServerHandlerTest.java │ ├── SimpleConnectPoolTest.java │ ├── TestFalseHandler.java │ └── TestHandler.java │ ├── model │ ├── DefaultRequestTest.java │ └── DefaultResponseTest.java │ ├── server │ ├── NettyServerConnectionTest.java │ ├── RPCServerTest.java │ └── ServerSupportTest.java │ └── support │ ├── AddressUtilTest.java │ └── ResultHolderTest.java └── server ├── auth ├── pom.xml └── src │ ├── main │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── auth │ │ ├── config │ │ ├── FilterConfig.java │ │ ├── GlobalSecurityConfig.java │ │ └── LdapConfiguration.java │ │ ├── constant │ │ ├── ActionTypes.java │ │ └── Constants.java │ │ ├── filter │ │ ├── JWTAuthenticationFilter.java │ │ ├── JWTAuthorizationFilter.java │ │ ├── LdapAuthenticationFilter.java │ │ └── RewriteUserInfoApiFilter.java │ │ ├── mapper │ │ ├── PermissionMapper.java │ │ └── UserMapper.java │ │ ├── model │ │ ├── LdapUserInfo.java │ │ ├── PermissionInfo.java │ │ ├── UserInfo.java │ │ └── biz │ │ │ ├── permission │ │ │ ├── PermissionQueryPageReqDTO.java │ │ │ ├── PermissionReqDTO.java │ │ │ └── PermissionRespDTO.java │ │ │ ├── role │ │ │ ├── RoleQueryPageReqDTO.java │ │ │ └── RoleRespDTO.java │ │ │ └── user │ │ │ ├── JwtUser.java │ │ │ ├── LoginUser.java │ │ │ ├── UserQueryPageReqDTO.java │ │ │ ├── UserReqDTO.java │ │ │ └── UserRespDTO.java │ │ ├── security │ │ ├── AuthManager.java │ │ └── JwtTokenManager.java │ │ ├── service │ │ ├── LdapService.java │ │ ├── PermissionService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── LdapServiceImpl.java │ │ │ ├── LdapUserDetailsServiceImpl.java │ │ │ ├── PermissionServiceImpl.java │ │ │ ├── UserDetailsServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── toolkit │ │ ├── AESUtil.java │ │ ├── AuthUtil.java │ │ ├── JwtTokenUtil.java │ │ └── ReturnT.java │ └── test │ └── java │ └── cn │ └── hippo4j │ └── auth │ ├── filter │ └── JWTAuthenticationFilterTest.java │ ├── secuity │ └── JwtTokenManagerTest.java │ ├── service │ └── impl │ │ └── UserServiceImplTest.java │ └── toolkit │ ├── AuthUtilTest.java │ ├── BCryptPasswordEncoderTest.java │ ├── JwtTokenUtilTest.java │ └── ReturnTTest.java ├── bootstrap ├── bin │ ├── shutdown.cmd │ ├── shutdown.sh │ ├── startup.cmd │ └── startup.sh ├── conf │ ├── application-h2.properties │ ├── application.properties │ ├── hippo4j-logback.xml │ ├── hippo4j_manager.sql │ └── sql-upgrade │ │ ├── 1.1.0_upgrade.sql │ │ ├── 1.4.0_upgrade.sql │ │ └── 1.4.2_upgrade.sql ├── pom.xml └── src │ └── main │ ├── java │ └── cn │ │ └── hippo4j │ │ └── server │ │ ├── ServerApplication.java │ │ ├── config │ │ ├── DataBaseConfiguration.java │ │ └── DataBaseProperties.java │ │ ├── init │ │ └── LocalDataSourceLoader.java │ │ └── listener │ │ ├── BaseSpringApplicationRunListener.java │ │ ├── Hippo4jApplicationListener.java │ │ └── StartingApplicationListener.java │ └── resources │ ├── META-INF │ └── spring.factories │ ├── application-h2.properties │ ├── application.properties │ ├── banner.txt │ ├── ldap-back.properties │ └── sql-script │ ├── h2 │ └── hippo4j_manager.sql │ └── mysql │ └── hippo4j_manager.sql ├── common ├── pom.xml └── src │ ├── main │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── server │ │ └── common │ │ └── base │ │ ├── Results.java │ │ └── exception │ │ ├── AbstractException.java │ │ ├── ErrorCode.java │ │ ├── ErrorCodeEnum.java │ │ ├── IllegalException.java │ │ └── ServiceException.java │ └── test │ └── java │ └── cn │ └── hippo4j │ └── server │ └── common │ └── base │ ├── ResultsTest.java │ └── ServiceExceptionTest.java ├── config ├── pom.xml └── src │ ├── main │ └── java │ │ └── cn │ │ └── hippo4j │ │ └── config │ │ ├── config │ │ ├── CommonConfig.java │ │ ├── MyMetaObjectHandler.java │ │ ├── MybatisPlusConfig.java │ │ ├── NettyServerConfig.java │ │ └── ServerBootstrapProperties.java │ │ ├── controller │ │ ├── ConfigController.java │ │ ├── MonitorController.java │ │ └── ThreadPoolAdapterController.java │ │ ├── event │ │ ├── AbstractEvent.java │ │ ├── AbstractSlowEvent.java │ │ └── LocalDataChangeEvent.java │ │ ├── mapper │ │ ├── ConfigInfoMapper.java │ │ ├── ConfigInstanceMapper.java │ │ ├── DashboardMapper.java │ │ ├── HisConfigVerifyMapper.java │ │ ├── HisRunDataMapper.java │ │ ├── ItemInfoMapper.java │ │ ├── NotifyInfoMapper.java │ │ ├── OperationLogMapper.java │ │ └── TenantInfoMapper.java │ │ ├── model │ │ ├── CacheItem.java │ │ ├── ConfigAllInfo.java │ │ ├── ConfigInfo.java │ │ ├── ConfigInfoBase.java │ │ ├── ConfigInstanceInfo.java │ │ ├── HisConfigVerifyInfo.java │ │ ├── HisRunDataInfo.java │ │ ├── ItemInfo.java │ │ ├── LogRecordInfo.java │ │ ├── NotifyInfo.java │ │ ├── TenantInfo.java │ │ └── biz │ │ │ ├── adapter │ │ │ ├── ThreadPoolAdapterReqDTO.java │ │ │ └── ThreadPoolAdapterRespDTO.java │ │ │ ├── item │ │ │ ├── ItemQueryReqDTO.java │ │ │ ├── ItemRespDTO.java │ │ │ ├── ItemSaveReqDTO.java │ │ │ └── ItemUpdateReqDTO.java │ │ │ ├── log │ │ │ ├── LogRecordQueryReqDTO.java │ │ │ └── LogRecordRespDTO.java │ │ │ ├── monitor │ │ │ ├── MonitorActiveRespDTO.java │ │ │ ├── MonitorQueryReqDTO.java │ │ │ └── MonitorRespDTO.java │ │ │ ├── notify │ │ │ ├── NotifyListRespDTO.java │ │ │ ├── NotifyQueryReqDTO.java │ │ │ ├── NotifyReqDTO.java │ │ │ └── NotifyRespDTO.java │ │ │ ├── tenant │ │ │ ├── TenantQueryReqDTO.java │ │ │ ├── TenantRespDTO.java │ │ │ ├── TenantSaveReqDTO.java │ │ │ └── TenantUpdateReqDTO.java │ │ │ └── threadpool │ │ │ ├── ConfigModificationQueryRespDTO.java │ │ │ ├── ConfigModifySaveReqDTO.java │ │ │ ├── ConfigModifyVerifyReqDTO.java │ │ │ ├── ThreadPoolDelReqDTO.java │ │ │ ├── ThreadPoolQueryReqDTO.java │ │ │ ├── ThreadPoolRespDTO.java │ │ │ └── ThreadPoolSaveOrUpdateReqDTO.java │ │ ├── monitor │ │ ├── AbstractMonitorDataExecuteStrategy.java │ │ ├── DefaultMonitorDataResolver.java │ │ ├── QueryMonitorExecuteChoose.java │ │ ├── RuntimeDataResolver.java │ │ └── TimeCleanHistoryDataTask.java │ │ ├── netty │ │ ├── MonitorNettyServer.java │ │ └── ServerHandler.java │ │ ├── notify │ │ ├── DefaultPublisher.java │ │ ├── DefaultSharePublisher.java │ │ ├── EventPublisher.java │ │ ├── NotifyCenter.java │ │ └── listener │ │ │ ├── AbstractSmartSubscriber.java │ │ │ └── AbstractSubscriber.java │ │ ├── service │ │ ├── ConfigCacheService.java │ │ ├── ConfigChangePublisher.java │ │ ├── ConfigServletInner.java │ │ ├── LongPollingService.java │ │ ├── SwitchService.java │ │ ├── ThreadPoolAdapterService.java │ │ ├── biz │ │ │ ├── ConfigModificationQueryService.java │ │ │ ├── ConfigModificationVerifyService.java │ │ │ ├── ConfigService.java │ │ │ ├── HisRunDataService.java │ │ │ ├── ItemService.java │ │ │ ├── NotifyService.java │ │ │ ├── OperationLogService.java │ │ │ ├── TenantService.java │ │ │ ├── ThreadPoolService.java │ │ │ └── impl │ │ │ │ ├── AbstractConfigModificationVerifyService.java │ │ │ │ ├── AdapterThreadPoolConfigModificationVerifyServiceImpl.java │ │ │ │ ├── ConfigModificationQueryServiceImpl.java │ │ │ │ ├── ConfigServiceImpl.java │ │ │ │ ├── HisRunDataServiceImpl.java │ │ │ │ ├── ItemServiceImpl.java │ │ │ │ ├── NotifyServiceImpl.java │ │ │ │ ├── OperationLogServiceImpl.java │ │ │ │ ├── TenantServiceImpl.java │ │ │ │ ├── ThreadPoolInstanceConfigModificationVerifyServiceImpl.java │ │ │ │ ├── ThreadPoolManageConfigModificationVerifyServiceImpl.java │ │ │ │ ├── ThreadPoolServiceImpl.java │ │ │ │ └── WebThreadPoolConfigModificationVerifyServiceImpl.java │ │ └── handler │ │ │ ├── ClientCloseHookRemoveConfigCache.java │ │ │ └── RemoveThreadPoolAdapterCache.java │ │ ├── toolkit │ │ ├── ClassUtil.java │ │ ├── ConfigExecutor.java │ │ ├── EnvUtil.java │ │ ├── Md5ConfigUtil.java │ │ ├── RequestUtil.java │ │ ├── SimpleReadWriteLock.java │ │ └── SingletonRepository.java │ │ └── verify │ │ └── ConfigModificationVerifyServiceChoose.java │ └── test │ └── java │ └── cn │ └── hippo4j │ └── config │ ├── event │ └── LocalDataChangeEventTest.java │ ├── service │ └── biz │ │ └── impl │ │ └── ConfigServiceQueueCapacityTest.java │ └── toolkit │ ├── ClassUtilTest.java │ ├── ConfigExecutorTest.java │ ├── EnvUtilTest.java │ ├── Md5ConfigUtilTest.java │ ├── RequestUtilTest.java │ └── SimpleReadWriteLockTest.java ├── console ├── pom.xml └── src │ └── main │ ├── java │ └── cn │ │ └── hippo4j │ │ └── console │ │ ├── config │ │ ├── GlobalExceptionHandler.java │ │ └── WebConfig.java │ │ ├── controller │ │ ├── ClientCloseHookController.java │ │ ├── ConfigVerifyController.java │ │ ├── DashboardController.java │ │ ├── HealthCheckController.java │ │ ├── ItemController.java │ │ ├── LogRecordController.java │ │ ├── NotifyController.java │ │ ├── TenantController.java │ │ ├── ThreadPoolAdapterController.java │ │ ├── ThreadPoolController.java │ │ └── UserController.java │ │ ├── model │ │ ├── ChartInfo.java │ │ ├── LineChartInfo.java │ │ ├── PieChartInfo.java │ │ ├── RankingChart.java │ │ ├── TenantChart.java │ │ ├── ThreadPoolInstanceInfo.java │ │ ├── WebThreadPoolReqDTO.java │ │ └── WebThreadPoolRespDTO.java │ │ └── service │ │ ├── DashboardService.java │ │ └── impl │ │ └── DashboardServiceImpl.java │ └── resources │ └── static │ ├── favicon.ico │ ├── hippo4j.gif │ ├── index.html │ └── static │ ├── css │ ├── app.e0393b62.css │ ├── chunk-06c697fe.13a7e89e.css │ ├── chunk-078a7535.53ac87fa.css │ ├── chunk-0932e290.35897ec7.css │ ├── chunk-149a43cf.53ac87fa.css │ ├── chunk-1527fc67.68c2c6ab.css │ ├── chunk-19ff498c.8c823ff8.css │ ├── chunk-1b3cdbc8.53ac87fa.css │ ├── chunk-21ab4256.8d0f39b9.css │ ├── chunk-36deb5d7.5f8941eb.css │ ├── chunk-3a6f2dc9.53ac87fa.css │ ├── chunk-425af8ad.8c823ff8.css │ ├── chunk-4d3c4de4.8c823ff8.css │ ├── chunk-4f40863a.53ac87fa.css │ ├── chunk-504bf98d.8a6d4294.css │ ├── chunk-5428753b.53ac87fa.css │ ├── chunk-60c39f89.53ac87fa.css │ ├── chunk-763560d2.8c823ff8.css │ ├── chunk-7e29bf1e.8a2a1e60.css │ ├── chunk-a89383d2.53ac87fa.css │ ├── chunk-adca2a60.53ac87fa.css │ ├── chunk-c6deb40e.95be1795.css │ ├── chunk-d6c1d344.53ac87fa.css │ ├── chunk-f40deee6.8c823ff8.css │ └── chunk-libs.3dfb7769.css │ ├── fonts │ ├── element-icons.535877f5.woff │ └── element-icons.732389de.ttf │ ├── img │ ├── 401.089007e7.gif │ ├── 404.a57b6f31.png │ ├── 404_cloud.0f4bc32b.png │ └── hippo4j.ecba1844.gif │ └── js │ ├── app.ab1ca36a.js │ ├── chunk-06c697fe.24596ec6.js │ ├── chunk-078a7535.a66ad223.js │ ├── chunk-0932e290.976b1b41.js │ ├── chunk-149a43cf.29d0a3d6.js │ ├── chunk-1527fc67.bec7ab4d.js │ ├── chunk-19ff498c.88141d68.js │ ├── chunk-1b3cdbc8.6d90ecb3.js │ ├── chunk-21ab4256.201c2525.js │ ├── chunk-2d230a36.2c2f8039.js │ ├── chunk-2d230fe7.a4519f66.js │ ├── chunk-36deb5d7.ac265245.js │ ├── chunk-3a6f2dc9.ce6a4619.js │ ├── chunk-425af8ad.9e86c4af.js │ ├── chunk-4d3c4de4.e240bd63.js │ ├── chunk-4f40863a.1218a87b.js │ ├── chunk-504bf98d.bd986b72.js │ ├── chunk-5428753b.540bec22.js │ ├── chunk-60c39f89.aad27f3f.js │ ├── chunk-763560d2.e10b3bb0.js │ ├── chunk-7e29bf1e.15d031f7.js │ ├── chunk-9472305a.f5723b2f.js │ ├── chunk-a89383d2.6e1b35b2.js │ ├── chunk-adca2a60.15fcdba3.js │ ├── chunk-c6deb40e.1a4c0aa2.js │ ├── chunk-d6c1d344.9deced41.js │ ├── chunk-elementUI.d7a21c1a.js │ ├── chunk-f40deee6.fa779371.js │ └── chunk-libs.321c4084.js ├── discovery ├── pom.xml └── src │ └── main │ └── java │ └── cn │ └── hippo4j │ └── discovery │ ├── config │ └── RegistryConfiguration.java │ ├── controller │ └── ApplicationController.java │ └── core │ ├── BaseInstanceRegistry.java │ ├── ClientCloseHookRemoveNode.java │ ├── InstanceRegistry.java │ └── Lease.java └── pom.xml /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_related.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/documentation_related.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/enhancement_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/unit_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/ISSUE_TEMPLATE/unit_test.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/reademe-contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.github/workflows/reademe-contributors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/LICENSE -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/README.md -------------------------------------------------------------------------------- /agent/config/agent.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/config/agent.config -------------------------------------------------------------------------------- /agent/dist-material/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/dist-material/LICENSE -------------------------------------------------------------------------------- /agent/dist-material/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/dist-material/NOTICE -------------------------------------------------------------------------------- /agent/hippo4j-agent-bootstrap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-bootstrap/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-core/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-core/src/main/java/cn/hippo4j/agent/core/os/OSUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-core/src/main/java/cn/hippo4j/agent/core/os/OSUtil.java -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/adapter-plugins/dubbo-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/adapter-plugins/dubbo-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/adapter-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/adapter-plugins/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/apollo-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/apollo-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/nacos-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/nacos-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/spring-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/spring-plugins/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/spring-plugins/spring-boot-1x-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/spring-plugins/spring-boot-1x-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/spring-plugins/spring-boot-2x-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/spring-plugins/spring-boot-2x-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/spring-plugins/spring-boot-3x-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/spring-plugins/spring-boot-3x-plugin/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/spring-plugins/spring-plugin-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/spring-plugins/spring-plugin-common/pom.xml -------------------------------------------------------------------------------- /agent/hippo4j-agent-plugin/threadpool-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/hippo4j-agent-plugin/threadpool-plugin/pom.xml -------------------------------------------------------------------------------- /agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/agent/pom.xml -------------------------------------------------------------------------------- /checkstyle/hippo4j_checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/checkstyle/hippo4j_checkstyle.xml -------------------------------------------------------------------------------- /checkstyle/hippo4j_checkstyle_suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/checkstyle/hippo4j_checkstyle_suppression.xml -------------------------------------------------------------------------------- /dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/dependencies/pom.xml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docker/docker-startup.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2022-06-06-hippo4j/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/blog/2022-06-06-hippo4j/index.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/community/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/_category_.json -------------------------------------------------------------------------------- /docs/community/contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/contributor.md -------------------------------------------------------------------------------- /docs/community/dev_convention/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/dev_convention/_category_.json -------------------------------------------------------------------------------- /docs/community/dev_convention/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/dev_convention/code.md -------------------------------------------------------------------------------- /docs/community/dev_convention/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/dev_convention/document.md -------------------------------------------------------------------------------- /docs/community/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/faq.md -------------------------------------------------------------------------------- /docs/community/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/sponsor.md -------------------------------------------------------------------------------- /docs/community/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/team.md -------------------------------------------------------------------------------- /docs/community/update-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/community/update-log.md -------------------------------------------------------------------------------- /docs/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/deploy.sh -------------------------------------------------------------------------------- /docs/docs/user_docs/dev_manual/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/dev_manual/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/dev_manual/queue-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/dev_manual/queue-custom.md -------------------------------------------------------------------------------- /docs/docs/user_docs/dev_manual/queue-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/dev_manual/queue-info.md -------------------------------------------------------------------------------- /docs/docs/user_docs/dev_manual/rejected-policy-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/dev_manual/rejected-policy-custom.md -------------------------------------------------------------------------------- /docs/docs/user_docs/dev_manual/rejected-policy-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/dev_manual/rejected-policy-info.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/config/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/config/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/config/hippo4j-config-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/config/hippo4j-config-default.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/config/hippo4j-config-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/config/hippo4j-config-monitor.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/config/hippo4j-config-more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/config/hippo4j-config-more.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/config/hippo4j-config-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/config/hippo4j-config-start.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/difference.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/hippo4j-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/hippo4j-adapter.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/img/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/img/docsVersionDropdown.png -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/img/grafana-monitor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/img/grafana-monitor.jpg -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/img/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/img/localeDropdown.png -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/server/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/server/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/server/hippo4j-server-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/server/hippo4j-server-config.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/server/hippo4j-server-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/server/hippo4j-server-monitor.md -------------------------------------------------------------------------------- /docs/docs/user_docs/getting_started/server/hippo4j-server-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/getting_started/server/hippo4j-server-start.md -------------------------------------------------------------------------------- /docs/docs/user_docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/intro.md -------------------------------------------------------------------------------- /docs/docs/user_docs/ops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/ops/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/ops/hippo4j-server-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/ops/hippo4j-server-deploy.md -------------------------------------------------------------------------------- /docs/docs/user_docs/ops/server-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/ops/server-docker.md -------------------------------------------------------------------------------- /docs/docs/user_docs/other/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/other/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/other/official-ccounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/other/official-ccounts.md -------------------------------------------------------------------------------- /docs/docs/user_docs/other/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/other/operation.md -------------------------------------------------------------------------------- /docs/docs/user_docs/other/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/other/question.md -------------------------------------------------------------------------------- /docs/docs/user_docs/user_guide/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/user_guide/_category_.json -------------------------------------------------------------------------------- /docs/docs/user_docs/user_guide/frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/user_guide/frame.md -------------------------------------------------------------------------------- /docs/docs/user_docs/user_guide/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/user_guide/framework.md -------------------------------------------------------------------------------- /docs/docs/user_docs/user_guide/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/user_guide/notify.md -------------------------------------------------------------------------------- /docs/docs/user_docs/user_guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docs/user_docs/user_guide/quick-start.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/code.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs-community/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-docs-community/current.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/version-1.4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/version-1.4.2.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/version-1.4.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/version-1.4.3.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/version-1.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/version-1.5.0.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/en/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /docs/i18n/zh/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/code.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-blog/2022-06-06-hippo4j/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-blog/2022-06-06-hippo4j/index.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-blog/authors.yml -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs-community/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs-community/current.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs-community/current/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/faq.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs-community/current/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/sponsor.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs-community/current/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/team.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs-community/current/update-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/update-log.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs/current/user_docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs/current/user_docs/intro.md -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs/version-1.4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs/version-1.4.2.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs/version-1.4.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs/version-1.4.3.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-plugin-content-docs/version-1.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-plugin-content-docs/version-1.5.0.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /docs/i18n/zh/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/i18n/zh/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/sidebarsCommunity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/sidebarsCommunity.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/LandingPage/GithubInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/LandingPage/GithubInfo.jsx -------------------------------------------------------------------------------- /docs/src/components/LandingPage/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/LandingPage/Hero.jsx -------------------------------------------------------------------------------- /docs/src/components/LandingPage/Introduction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/LandingPage/Introduction.jsx -------------------------------------------------------------------------------- /docs/src/components/LandingPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/LandingPage/index.js -------------------------------------------------------------------------------- /docs/src/components/LandingPage/useGithubInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/components/LandingPage/useGithubInfo.jsx -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/group.md -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/src/pages/old_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/old_users.md -------------------------------------------------------------------------------- /docs/src/pages/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/src/pages/users.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/company_logos/5000m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/5000m.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/51shebao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/51shebao.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/94ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/94ai.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/aisino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/aisino.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/bananain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/bananain.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/bangkebang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/bangkebang.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/data4truth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/data4truth.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/didiglobal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/didiglobal.svg -------------------------------------------------------------------------------- /docs/static/img/company_logos/digitalchina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/digitalchina.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/duofriend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/duofriend.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/eju.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/eju.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/fittime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/fittime.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/geely.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/geely.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/glodon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/glodon.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/haohuoyundian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/haohuoyundian.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/hua-cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/hua-cloud.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/ist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/ist.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/lbdj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/lbdj.svg -------------------------------------------------------------------------------- /docs/static/img/company_logos/lightinthebox.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/lightinthebox.avif -------------------------------------------------------------------------------- /docs/static/img/company_logos/medbanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/medbanks.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/payermax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/payermax.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/qyzl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/qyzl.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/serviceshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/serviceshare.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/shangmanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/shangmanet.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/tianshu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/tianshu.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/tjlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/tjlc.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/tophant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/tophant.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/uyess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/uyess.jpg -------------------------------------------------------------------------------- /docs/static/img/company_logos/xdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/xdf.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/xinhuazhiyun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/xinhuazhiyun.svg -------------------------------------------------------------------------------- /docs/static/img/company_logos/yckjdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/yckjdata.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/yiche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/yiche.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/youdao.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/yuantiaokj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/yuantiaokj.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/zhihu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/zhihu.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/zhihuiya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/zhihuiya.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/zhlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/zhlc.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/ziroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/ziroom.png -------------------------------------------------------------------------------- /docs/static/img/company_logos/zzltsw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/company_logos/zzltsw.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hero.svg -------------------------------------------------------------------------------- /docs/static/img/hero/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hero/bg.jpg -------------------------------------------------------------------------------- /docs/static/img/hero/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hero/bg2.jpg -------------------------------------------------------------------------------- /docs/static/img/hero/hero-removebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hero/hero-removebg.png -------------------------------------------------------------------------------- /docs/static/img/hero/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hero/hero.jpg -------------------------------------------------------------------------------- /docs/static/img/hippo4j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hippo4j.png -------------------------------------------------------------------------------- /docs/static/img/hippo4j_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/hippo4j_favicon.ico -------------------------------------------------------------------------------- /docs/static/img/introduction/p1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p1.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/p11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p11.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/p2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p2.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/p22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p22.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/p3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p3.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/p33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/p33.svg -------------------------------------------------------------------------------- /docs/static/img/introduction/t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/t.jpg -------------------------------------------------------------------------------- /docs/static/img/introduction/t2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/introduction/t2.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/static/json/company_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/static/json/company_logo.json -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/dev_manual/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/dev_manual/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/getting_started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/getting_started/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/getting_started/difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/getting_started/difference.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/ops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/ops/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/ops/hippo4j-server-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/ops/hippo4j-server-deploy.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/ops/server-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/ops/server-docker.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/other/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/other/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/other/official-ccounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/other/official-ccounts.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/other/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/other/operation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/other/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/other/question.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/user_guide/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/user_guide/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/user_guide/frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/user_guide/frame.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/user_guide/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/user_guide/framework.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/user_guide/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/user_guide/notify.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.2/user_docs/user_guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.2/user_docs/user_guide/quick-start.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/dev_manual/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/dev_manual/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/getting_started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/getting_started/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/getting_started/difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/getting_started/difference.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/ops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/ops/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/ops/hippo4j-server-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/ops/hippo4j-server-deploy.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/ops/server-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/ops/server-docker.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/other/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/other/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/other/official-ccounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/other/official-ccounts.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/other/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/other/operation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/other/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/other/question.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/user_guide/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/user_guide/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/user_guide/frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/user_guide/frame.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/user_guide/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/user_guide/framework.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/user_guide/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/user_guide/notify.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.4.3/user_docs/user_guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.4.3/user_docs/user_guide/quick-start.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/dev_manual/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/dev_manual/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/getting_started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/getting_started/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/getting_started/difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/getting_started/difference.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/ops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/ops/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/ops/hippo4j-server-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/ops/hippo4j-server-deploy.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/ops/server-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/ops/server-docker.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/other/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/other/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/other/official-ccounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/other/official-ccounts.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/other/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/other/operation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/other/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/other/question.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/user_guide/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/user_guide/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/user_guide/frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/user_guide/frame.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/user_guide/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/user_guide/framework.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/user_guide/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/user_guide/notify.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.5.0/user_docs/user_guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_docs/version-1.5.0/user_docs/user_guide/quick-start.md -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-1.4.2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_sidebars/version-1.4.2-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-1.4.3-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_sidebars/version-1.4.3-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-1.5.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versioned_sidebars/version-1.5.0-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/docs/versions.json -------------------------------------------------------------------------------- /examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/agent-example-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/agent-example-core/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-apollo-spring-boot-1x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-apollo-spring-boot-1x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-apollo-spring-boot-3x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-apollo-spring-boot-3x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-apollo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-apollo/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-nacos-spring-boot-1x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-nacos-spring-boot-1x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-nacos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-nacos/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/config-naocs-spring-boot-3x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/config-naocs-spring-boot-3x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/agent/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-apollo-spring-boot-1x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-apollo-spring-boot-1x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-apollo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-apollo/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-consul-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-consul-spring-boot/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-etcd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-etcd/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-nacos-spring-boot-1x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-nacos-spring-boot-1x/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-nacos-spring-boot3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-nacos-spring-boot3/README.md -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-nacos-spring-boot3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-nacos-spring-boot3/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-nacos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-nacos/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/config-zookeeper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/config-zookeeper/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/config/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/example-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/example-core/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-dubbo-spring-boot3/README.md: -------------------------------------------------------------------------------- 1 | ## spring-boot3 仅支持jdk17以上版本 2 | ## 启动项添加JVM配置参数: 3 | ``` 4 | --add-opens java.base/java.util.concurrent=ALL-UNNAMED 5 | ``` -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-dubbo-spring-boot3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-dubbo-spring-boot3/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-kafka/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-rabbitmq-spring-boot3/README.md: -------------------------------------------------------------------------------- 1 | ## spring-boot3 仅支持jdk17以上版本 2 | ## 启动项添加JVM配置参数: 3 | ``` 4 | --add-opens java.base/java.util.concurrent=ALL-UNNAMED 5 | ``` -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-rabbitmq-spring-boot3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-rabbitmq-spring-boot3/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-rabbitmq/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-rocketmq/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-stream-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-stream-rabbitmq/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-stream-rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/adapter-stream-rocketmq/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/adapter-stream-rocketmq/src/main/resources/META-INF/services/cn.hippo4j.core.api.ClientNetworkService: -------------------------------------------------------------------------------- 1 | cn.hippo4j.example.core.handler.CustomerClientNetworkService -------------------------------------------------------------------------------- /examples/threadpool-example/server/monitor-elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/monitor-elasticsearch/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/server-spring-boot3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/server-spring-boot3/README.md -------------------------------------------------------------------------------- /examples/threadpool-example/server/server-spring-boot3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/server-spring-boot3/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/examples/threadpool-example/server/server/pom.xml -------------------------------------------------------------------------------- /examples/threadpool-example/server/server/src/main/resources/META-INF/services/cn.hippo4j.core.api.ClientNetworkService: -------------------------------------------------------------------------------- 1 | cn.hippo4j.example.core.handler.CustomerClientNetworkService -------------------------------------------------------------------------------- /format/hippo4j_spotless_formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/format/hippo4j_spotless_formatter.xml -------------------------------------------------------------------------------- /format/license-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/format/license-header -------------------------------------------------------------------------------- /infra/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/pom.xml -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/api/IExecutorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/api/IExecutorProperties.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/api/JsonFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/api/JsonFacade.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/api/NotifyRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/api/NotifyRequest.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/api/ThreadDetailState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/api/ThreadDetailState.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/boot/AgentPackagePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/boot/AgentPackagePath.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/boot/ClassCacheMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/boot/ClassCacheMode.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/conf/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/conf/Config.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/conf/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/conf/Constants.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/constant/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/constant/Constants.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/constant/HttpMediaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/constant/HttpMediaType.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/constant/HttpMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/constant/HttpMethod.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/constant/HttpResponseCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/constant/HttpResponseCode.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/executor/ExecutorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/executor/ExecutorFactory.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/extension/design/Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/extension/design/Builder.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/api/ILog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/api/ILog.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/api/LogManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/api/LogManager.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/api/NoopLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/api/NoopLogger.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/Converter.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/IWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/IWriter.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/LogEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/LogEvent.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/LogLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/LogLevel.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/LogOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/LogOutput.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/logging/core/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/logging/core/Parser.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/model/InstanceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/model/InstanceInfo.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/model/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/model/Result.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/model/TokenInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/model/TokenInfo.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/model/WebIpAndPortInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/model/WebIpAndPortInfo.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/monitor/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/monitor/Message.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/monitor/MessageRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/monitor/MessageRequest.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/monitor/MessageWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/monitor/MessageWrapper.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/monitor/RuntimeMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/monitor/RuntimeMessage.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ArrayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ArrayUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/Assert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/Assert.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/BeanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/BeanUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/BooleanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/BooleanUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/CalculateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/CalculateUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ClassUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ClassUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/CollectionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/CollectionUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ConditionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ConditionUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ContentUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ContentUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/DateUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/GroupKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/GroupKey.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/IdUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/IdUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/IoUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/IoUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/JSONUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/JSONUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/JacksonHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/JacksonHandler.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/Joiner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/Joiner.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/MapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/MapUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/Md5Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/Md5Util.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/MemoryUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/MemoryUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/MessageConvert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/MessageConvert.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ReflectUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ReflectUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/Singleton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/Singleton.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/StringUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/ThreadUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/ThreadUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/UserContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/UserContext.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/VersionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/VersionUtil.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/agent/Length.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/agent/Length.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/http/Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/http/Header.java -------------------------------------------------------------------------------- /infra/common/src/main/java/cn/hippo4j/common/toolkit/http/HttpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/main/java/cn/hippo4j/common/toolkit/http/HttpUtil.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/MockitoTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/MockitoTests.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/ArrayUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/ArrayUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/AssertTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/AssertTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/BeanUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/BeanUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/ClassUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/ClassUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/GroupKeyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/GroupKeyTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/IdUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/IdUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/IoUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/IoUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/JSONUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/JSONUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/MapUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/MapUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/Md5UtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/Md5UtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/MemoryUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/MemoryUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/MessageWrapperTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/MessageWrapperTest -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/SingletonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/SingletonTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/StringUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/StringUtilTest.java -------------------------------------------------------------------------------- /infra/common/src/test/java/cn/hippo4j/common/toolkit/ThreadUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/common/src/test/java/cn/hippo4j/common/toolkit/ThreadUtilTest.java -------------------------------------------------------------------------------- /infra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/pom.xml -------------------------------------------------------------------------------- /infra/toolkit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/infra/toolkit/pom.xml -------------------------------------------------------------------------------- /kernel/alarm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/alarm/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/api/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/core/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/mode/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/mode/config/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/mode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/mode/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/mode/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/mode/server/pom.xml -------------------------------------------------------------------------------- /kernel/dynamic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/dynamic/pom.xml -------------------------------------------------------------------------------- /kernel/message/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/api/pom.xml -------------------------------------------------------------------------------- /kernel/message/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/core/pom.xml -------------------------------------------------------------------------------- /kernel/message/mode/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/mode/config/pom.xml -------------------------------------------------------------------------------- /kernel/message/mode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/mode/pom.xml -------------------------------------------------------------------------------- /kernel/message/mode/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/mode/server/pom.xml -------------------------------------------------------------------------------- /kernel/message/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/message/pom.xml -------------------------------------------------------------------------------- /kernel/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/monitor/pom.xml -------------------------------------------------------------------------------- /kernel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/kernel/pom.xml -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/lombok.config -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/pom.xml -------------------------------------------------------------------------------- /starters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/alibaba-dubbo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/alibaba-dubbo/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/all/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/dubbo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/dubbo/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/dubbox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/dubbox/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/hystrix/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/hystrix/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/kafka/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/rabbitmq/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/rocketmq/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/stream-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/stream-rabbitmq/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/stream-rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/stream-rocketmq/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/adapter/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/adapter/web/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/config-spring-boot-1x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/config-spring-boot-1x/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/config/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/config/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/config/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /starters/threadpool/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/monitor/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/server/pom.xml -------------------------------------------------------------------------------- /starters/threadpool/server/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/starters/threadpool/server/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/alibaba-dubbo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/alibaba-dubbo/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/base/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/dubbo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/dubbo/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/dubbox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/dubbox/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/hystrix/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/hystrix/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/kafka/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/rabbitmq/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/rocketmq/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/stream-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/stream-rabbitmq/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/stream-rocketmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/stream-rocketmq/pom.xml -------------------------------------------------------------------------------- /threadpool/adapter/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/adapter/web/pom.xml -------------------------------------------------------------------------------- /threadpool/console-new/.eslintignore: -------------------------------------------------------------------------------- 1 | /.git 2 | /.vscode 3 | node_modules 4 | build 5 | public 6 | -------------------------------------------------------------------------------- /threadpool/console-new/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/.eslintrc.js -------------------------------------------------------------------------------- /threadpool/console-new/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/.gitignore -------------------------------------------------------------------------------- /threadpool/console-new/.prettierignore: -------------------------------------------------------------------------------- 1 | /.git 2 | node_modules 3 | build 4 | src/lib/* -------------------------------------------------------------------------------- /threadpool/console-new/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/.prettierrc.js -------------------------------------------------------------------------------- /threadpool/console-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/README.md -------------------------------------------------------------------------------- /threadpool/console-new/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/craco.config.js -------------------------------------------------------------------------------- /threadpool/console-new/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/package.json -------------------------------------------------------------------------------- /threadpool/console-new/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/favicon.ico -------------------------------------------------------------------------------- /threadpool/console-new/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/index.html -------------------------------------------------------------------------------- /threadpool/console-new/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/logo192.png -------------------------------------------------------------------------------- /threadpool/console-new/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/logo512.png -------------------------------------------------------------------------------- /threadpool/console-new/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/manifest.json -------------------------------------------------------------------------------- /threadpool/console-new/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/public/robots.txt -------------------------------------------------------------------------------- /threadpool/console-new/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/App.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/header/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/header/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/header/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/icon/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/layout-com/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/layout-com/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/components/layout-com/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/layout-com/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/table/index.module.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /threadpool/console-new/src/components/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/table/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/theme-com/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/theme-com/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/components/with-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/components/with-button/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/config/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/i18n/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/i18n/locales/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/i18n/locales/constants.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/i18n/locales/en.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/i18n/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/i18n/locales/zh.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/theme/dark-algorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/theme/dark-algorithm.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/theme/default-algnorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/theme/default-algnorithm.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/theme/default-theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/theme/default-theme.d.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/config/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/config/theme/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/context/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/hooks/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/hooks/useFormToUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/hooks/useFormToUrl.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/hooks/useTransLate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/hooks/useTransLate.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/hooks/useUrlSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/hooks/useUrlSet.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/index.module.less: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #ebebf2; 3 | } 4 | -------------------------------------------------------------------------------- /threadpool/console-new/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/about/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/about/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/about/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/components/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/home/components/detail/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/constans.ts: -------------------------------------------------------------------------------- 1 | export const Map = {}; 2 | -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/home/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/home/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/home/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/home/type.ts: -------------------------------------------------------------------------------- 1 | export enum CON { 2 | NAME = '1', 3 | } 4 | -------------------------------------------------------------------------------- /threadpool/console-new/src/page/item/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/item/create.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/item/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/item/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/page/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/item/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/item/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/item/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/item/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/item/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/log/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/log/detail.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/log/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/log/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/page/log/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/log/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/log/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/log/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/log/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/log/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/login/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/login/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/page/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/login/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/login/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/login/router.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/login/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/login/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/search/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/tenant/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/tenant/create.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/tenant/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/tenant/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/page/tenant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/tenant/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/tenant/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/tenant/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/tenant/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/tenant/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool-monitor/index.module.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool-monitor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool-monitor/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool-monitor/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool-monitor/router.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool/constants.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool/router.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/thread-pool/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/thread-pool/type.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/page/user/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/user/create.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/user/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/user/index.module.less -------------------------------------------------------------------------------- /threadpool/console-new/src/page/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/user/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/user/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/user/router.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/page/user/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/page/user/service.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/react-app-env.d.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/route/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/route/index.tsx -------------------------------------------------------------------------------- /threadpool/console-new/src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/typings/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/utils/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/utils/common/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/utils/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/src/utils/request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/src/utils/request/index.ts -------------------------------------------------------------------------------- /threadpool/console-new/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/tsconfig.json -------------------------------------------------------------------------------- /threadpool/console-new/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console-new/yarn.lock -------------------------------------------------------------------------------- /threadpool/console/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.editorconfig -------------------------------------------------------------------------------- /threadpool/console/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.env.development -------------------------------------------------------------------------------- /threadpool/console/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.env.production -------------------------------------------------------------------------------- /threadpool/console/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.env.staging -------------------------------------------------------------------------------- /threadpool/console/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | *.vue 6 | -------------------------------------------------------------------------------- /threadpool/console/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.eslintrc.js -------------------------------------------------------------------------------- /threadpool/console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.gitignore -------------------------------------------------------------------------------- /threadpool/console/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.prettierrc.js -------------------------------------------------------------------------------- /threadpool/console/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/.travis.yml -------------------------------------------------------------------------------- /threadpool/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/README.md -------------------------------------------------------------------------------- /threadpool/console/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/babel.config.js -------------------------------------------------------------------------------- /threadpool/console/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/jest.config.js -------------------------------------------------------------------------------- /threadpool/console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/package.json -------------------------------------------------------------------------------- /threadpool/console/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/plopfile.js -------------------------------------------------------------------------------- /threadpool/console/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/postcss.config.js -------------------------------------------------------------------------------- /threadpool/console/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/public/favicon.ico -------------------------------------------------------------------------------- /threadpool/console/public/hippo4j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/public/hippo4j.gif -------------------------------------------------------------------------------- /threadpool/console/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/public/index.html -------------------------------------------------------------------------------- /threadpool/console/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/App.vue -------------------------------------------------------------------------------- /threadpool/console/src/api/dashborad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/dashborad.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-adapterThreadPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-adapterThreadPool.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-instance.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-item.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-log.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-monitor.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-notify.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-tenant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-tenant.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-threadPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-threadPool.js -------------------------------------------------------------------------------- /threadpool/console/src/api/hippo4j-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/hippo4j-user.js -------------------------------------------------------------------------------- /threadpool/console/src/api/metadata-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/metadata-query.js -------------------------------------------------------------------------------- /threadpool/console/src/api/remote-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/remote-search.js -------------------------------------------------------------------------------- /threadpool/console/src/api/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/role.js -------------------------------------------------------------------------------- /threadpool/console/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/user.js -------------------------------------------------------------------------------- /threadpool/console/src/api/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/api/verify.js -------------------------------------------------------------------------------- /threadpool/console/src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /threadpool/console/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/404_images/404.png -------------------------------------------------------------------------------- /threadpool/console/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /threadpool/console/src/assets/custom-theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/custom-theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /threadpool/console/src/assets/custom-theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/custom-theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /threadpool/console/src/assets/custom-theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/assets/custom-theme/index.css -------------------------------------------------------------------------------- /threadpool/console/src/components/BackToTop/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/BackToTop/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Charts/Keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Charts/Keyboard.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Charts/LineMarker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Charts/LineMarker.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Charts/MixChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Charts/MixChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Charts/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Charts/mixins/resize.js -------------------------------------------------------------------------------- /threadpool/console/src/components/ErrorLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ErrorLog/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/GithubCorner/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/GithubCorner/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/HeaderSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/HeaderSearch/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/ImageCropper/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ImageCropper/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/ImageCropper/utils/data2blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ImageCropper/utils/data2blob.js -------------------------------------------------------------------------------- /threadpool/console/src/components/ImageCropper/utils/effectRipple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ImageCropper/utils/effectRipple.js -------------------------------------------------------------------------------- /threadpool/console/src/components/ImageCropper/utils/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ImageCropper/utils/language.js -------------------------------------------------------------------------------- /threadpool/console/src/components/ImageCropper/utils/mimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/ImageCropper/utils/mimes.js -------------------------------------------------------------------------------- /threadpool/console/src/components/JsonEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/JsonEditor/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/RightPanel/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/Sticky/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/Sticky/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/directive/clipboard/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/clipboard/clipboard.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/clipboard/index.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/el-drag-dialog/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/el-drag-dialog/drag.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/el-drag-dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/el-drag-dialog/index.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/el-table/adaptive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/el-table/adaptive.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/el-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/el-table/index.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/permission/index.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/permission/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/permission/permission.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/sticky.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/waves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/waves/index.js -------------------------------------------------------------------------------- /threadpool/console/src/directive/waves/waves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/waves/waves.css -------------------------------------------------------------------------------- /threadpool/console/src/directive/waves/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/directive/waves/waves.js -------------------------------------------------------------------------------- /threadpool/console/src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/filters/index.js -------------------------------------------------------------------------------- /threadpool/console/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/index.js -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/404.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/audit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/audit.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/dashboard2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/dashboard2.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/item.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/item_logo4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/item_logo4.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/json.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/language.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/lessee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/lessee.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/link.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/log.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/monitor.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/notify.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/other.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/password.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/pool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/pool.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/tenant_logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/tenant_logo2.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/threadPool_logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/threadPool_logo1.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/threadPool_logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/threadPool_logo2.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/user.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svg/vessel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svg/vessel.svg -------------------------------------------------------------------------------- /threadpool/console/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/icons/svgo.yml -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/components/index.js -------------------------------------------------------------------------------- /threadpool/console/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /threadpool/console/src/locale/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/locale/config.js -------------------------------------------------------------------------------- /threadpool/console/src/locale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/locale/index.js -------------------------------------------------------------------------------- /threadpool/console/src/locale/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/locale/lang/en.js -------------------------------------------------------------------------------- /threadpool/console/src/locale/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/locale/lang/zh.js -------------------------------------------------------------------------------- /threadpool/console/src/locale/langChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/locale/langChange.vue -------------------------------------------------------------------------------- /threadpool/console/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/main.js -------------------------------------------------------------------------------- /threadpool/console/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/permission.js -------------------------------------------------------------------------------- /threadpool/console/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/router/index.js -------------------------------------------------------------------------------- /threadpool/console/src/router/modules/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/router/modules/tool.js -------------------------------------------------------------------------------- /threadpool/console/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/settings.js -------------------------------------------------------------------------------- /threadpool/console/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/getters.js -------------------------------------------------------------------------------- /threadpool/console/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/index.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/app.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/errorLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/errorLog.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/permission.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/settings.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/tenant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/tenant.js -------------------------------------------------------------------------------- /threadpool/console/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/store/modules/user.js -------------------------------------------------------------------------------- /threadpool/console/src/styles/btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/btn.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/element-ui.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/element-variables.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/index.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/mixin.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/sidebar.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/transition.scss -------------------------------------------------------------------------------- /threadpool/console/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/styles/variables.scss -------------------------------------------------------------------------------- /threadpool/console/src/utils/aes-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/aes-util.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/auth.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/clipboard.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/error-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/error-log.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/get-page-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/get-page-title.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/i18n-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/i18n-utils.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/index.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/open-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/open-window.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/permission.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/request.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/scroll-to.js -------------------------------------------------------------------------------- /threadpool/console/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/utils/validate.js -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/BarChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/BoxCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/BoxCard.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/LineChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/PanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/PanelGroup.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/PieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/PieChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/RaddarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/RaddarChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/components/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/components/mixins/resize.js -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/admin/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/error-page/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/error-page/401.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/error-page/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/error-page/404.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/instance/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/instance/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/item/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/item/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/log/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/monitor/components/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/monitor/components/LineChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/monitor/components/PieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/monitor/components/PieChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/monitor/components/RaddarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/monitor/components/RaddarChart.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/monitor/components/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/monitor/components/mixins/resize.js -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/monitor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/monitor/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/notify/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/notify/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/alibaba-dubbo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/alibaba-dubbo/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/dubbo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/dubbo/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/hystrix/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/hystrix/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/rabbitmq-stream/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/rabbitmq-stream/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/rabbitmq/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/rabbitmq/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/rocketmq-stream/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/rocketmq-stream/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/other/rocketmq/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/other/rocketmq/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/server/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/server/jetty/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/server/jetty/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/server/tomcat/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/server/tomcat/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/server/undertow/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/server/undertow/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/tenant/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/tenant/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/threadpool/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/threadpool/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/user/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/hippo4j/verify/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/hippo4j/verify/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/login/auth-redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/login/auth-redirect.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/login/components/SocialSignin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/login/components/SocialSignin.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/login/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/permission/components/SwitchRoles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/permission/components/SwitchRoles.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/permission/directive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/permission/directive.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/permission/page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/permission/page.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/permission/role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/permission/role.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/profile/components/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/profile/components/Account.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/profile/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/redirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/redirect/index.vue -------------------------------------------------------------------------------- /threadpool/console/src/views/tool/jsonFormat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/src/views/tool/jsonFormat.vue -------------------------------------------------------------------------------- /threadpool/console/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/console/vue.config.js -------------------------------------------------------------------------------- /threadpool/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/pom.xml -------------------------------------------------------------------------------- /threadpool/core/src/main/java/cn/hippo4j/core/extension/IExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/main/java/cn/hippo4j/core/extension/IExtension.java -------------------------------------------------------------------------------- /threadpool/core/src/main/java/cn/hippo4j/core/toolkit/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/main/java/cn/hippo4j/core/toolkit/FileUtil.java -------------------------------------------------------------------------------- /threadpool/core/src/main/java/cn/hippo4j/core/toolkit/IdentifyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/main/java/cn/hippo4j/core/toolkit/IdentifyUtil.java -------------------------------------------------------------------------------- /threadpool/core/src/main/java/cn/hippo4j/core/toolkit/SystemClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/main/java/cn/hippo4j/core/toolkit/SystemClock.java -------------------------------------------------------------------------------- /threadpool/core/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /threadpool/core/src/test/java/cn/hippo4j/core/extension/spi/IOldSpi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/test/java/cn/hippo4j/core/extension/spi/IOldSpi.java -------------------------------------------------------------------------------- /threadpool/core/src/test/java/cn/hippo4j/core/spi/TestInterfaceSPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/test/java/cn/hippo4j/core/spi/TestInterfaceSPI.java -------------------------------------------------------------------------------- /threadpool/core/src/test/java/cn/hippo4j/core/toolkit/FileUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/test/java/cn/hippo4j/core/toolkit/FileUtilTest.java -------------------------------------------------------------------------------- /threadpool/core/src/test/resources/META-INF/services/cn.hippo4j.common.executor.support.CustomBlockingQueue: -------------------------------------------------------------------------------- 1 | cn.hippo4j.core.spi.MyArrayBlockingQueue -------------------------------------------------------------------------------- /threadpool/core/src/test/resources/META-INF/services/cn.hippo4j.core.extension.spi.IOldSpi: -------------------------------------------------------------------------------- 1 | cn.hippo4j.core.extension.spi.IOldSpiImplA -------------------------------------------------------------------------------- /threadpool/core/src/test/resources/test/test_utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/core/src/test/resources/test/test_utf8.txt -------------------------------------------------------------------------------- /threadpool/message/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/message/pom.xml -------------------------------------------------------------------------------- /threadpool/monitor/base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/base/pom.xml -------------------------------------------------------------------------------- /threadpool/monitor/elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/elasticsearch/pom.xml -------------------------------------------------------------------------------- /threadpool/monitor/elasticsearch/src/main/resources/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/elasticsearch/src/main/resources/mapping.json -------------------------------------------------------------------------------- /threadpool/monitor/local-log/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/local-log/pom.xml -------------------------------------------------------------------------------- /threadpool/monitor/micrometer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/micrometer/pom.xml -------------------------------------------------------------------------------- /threadpool/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/monitor/pom.xml -------------------------------------------------------------------------------- /threadpool/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/pom.xml -------------------------------------------------------------------------------- /threadpool/rpc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/pom.xml -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/Client.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/ClientSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/ClientSupport.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/RPCClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/client/RPCClient.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/coder/ObjectEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/coder/ObjectEncoder.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/discovery/ServerPort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/discovery/ServerPort.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/ConnectHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/ConnectHandler.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/HandlerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/HandlerManager.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/ServerHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/handler/ServerHandler.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/DefaultRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/DefaultRequest.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/DefaultResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/DefaultResponse.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/Request.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/model/Response.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/RPCServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/RPCServer.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/Server.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/ServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/server/ServerSupport.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/support/AddressUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/support/AddressUtil.java -------------------------------------------------------------------------------- /threadpool/rpc/src/main/java/cn/hippo4j/rpc/support/ResultHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/main/java/cn/hippo4j/rpc/support/ResultHolder.java -------------------------------------------------------------------------------- /threadpool/rpc/src/test/java/cn/hippo4j/rpc/client/CallManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/test/java/cn/hippo4j/rpc/client/CallManager.java -------------------------------------------------------------------------------- /threadpool/rpc/src/test/java/cn/hippo4j/rpc/client/RandomPort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/test/java/cn/hippo4j/rpc/client/RandomPort.java -------------------------------------------------------------------------------- /threadpool/rpc/src/test/java/cn/hippo4j/rpc/handler/TestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/test/java/cn/hippo4j/rpc/handler/TestHandler.java -------------------------------------------------------------------------------- /threadpool/rpc/src/test/java/cn/hippo4j/rpc/server/RPCServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/test/java/cn/hippo4j/rpc/server/RPCServerTest.java -------------------------------------------------------------------------------- /threadpool/rpc/src/test/java/cn/hippo4j/rpc/support/AddressUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/rpc/src/test/java/cn/hippo4j/rpc/support/AddressUtilTest.java -------------------------------------------------------------------------------- /threadpool/server/auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/auth/pom.xml -------------------------------------------------------------------------------- /threadpool/server/auth/src/main/java/cn/hippo4j/auth/model/UserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/auth/src/main/java/cn/hippo4j/auth/model/UserInfo.java -------------------------------------------------------------------------------- /threadpool/server/bootstrap/bin/shutdown.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/bin/shutdown.cmd -------------------------------------------------------------------------------- /threadpool/server/bootstrap/bin/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/bin/shutdown.sh -------------------------------------------------------------------------------- /threadpool/server/bootstrap/bin/startup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/bin/startup.cmd -------------------------------------------------------------------------------- /threadpool/server/bootstrap/bin/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/bin/startup.sh -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/application-h2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/application-h2.properties -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/application.properties -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/hippo4j-logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/hippo4j-logback.xml -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/hippo4j_manager.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/hippo4j_manager.sql -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/sql-upgrade/1.1.0_upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/sql-upgrade/1.1.0_upgrade.sql -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/sql-upgrade/1.4.0_upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/sql-upgrade/1.4.0_upgrade.sql -------------------------------------------------------------------------------- /threadpool/server/bootstrap/conf/sql-upgrade/1.4.2_upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/conf/sql-upgrade/1.4.2_upgrade.sql -------------------------------------------------------------------------------- /threadpool/server/bootstrap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/pom.xml -------------------------------------------------------------------------------- /threadpool/server/bootstrap/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /threadpool/server/bootstrap/src/main/resources/application-h2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/src/main/resources/application-h2.properties -------------------------------------------------------------------------------- /threadpool/server/bootstrap/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/src/main/resources/application.properties -------------------------------------------------------------------------------- /threadpool/server/bootstrap/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/src/main/resources/banner.txt -------------------------------------------------------------------------------- /threadpool/server/bootstrap/src/main/resources/ldap-back.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/bootstrap/src/main/resources/ldap-back.properties -------------------------------------------------------------------------------- /threadpool/server/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/common/pom.xml -------------------------------------------------------------------------------- /threadpool/server/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/config/pom.xml -------------------------------------------------------------------------------- /threadpool/server/console/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/console/pom.xml -------------------------------------------------------------------------------- /threadpool/server/console/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/console/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /threadpool/server/console/src/main/resources/static/hippo4j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/console/src/main/resources/static/hippo4j.gif -------------------------------------------------------------------------------- /threadpool/server/console/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/console/src/main/resources/static/index.html -------------------------------------------------------------------------------- /threadpool/server/discovery/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/discovery/pom.xml -------------------------------------------------------------------------------- /threadpool/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengoofy/hippo4j/HEAD/threadpool/server/pom.xml --------------------------------------------------------------------------------