GitHub user lin-sion edited a discussion: spring-cloud-starter-alibaba-seata:2025.0.0.0项目启动失败
我的maven项目引入了spring-cloud-starter-alibaba-seata:2025.0.0.0,seata-server是使用docker compose安装的,我的机子是win11,通过WSL2的方式安装了Ubuntu 22.04.5 LTS。使用docker compose config查看里面seata-server的配置内容为 <img width="891" height="1054" alt="docker-config" src="https://github.com/user-attachments/assets/7f56aa76-0ec9-435c-a4cb-3458d6642528" /> 我的nacos的命名空间 <img width="1150" height="274" alt="namespace" src="https://github.com/user-attachments/assets/0e2cb08c-9c58-4906-a454-1073b9c9115e" /> 在dev的空间中,有seata相关的配置 <img width="1335" height="795" alt="配置" src="https://github.com/user-attachments/assets/13116f0b-681f-49b1-b326-0c0f7e04d72c" /> 最后两个是我在找答案时找到的,说是要配置这样的记录,我也不清楚哪个是对的 <img width="495" height="418" alt="text配置" src="https://github.com/user-attachments/assets/fb186ac5-f93a-4ef9-bb19-95cd8b693184" /> <img width="570" height="433" alt="prop配置" src="https://github.com/user-attachments/assets/bbef99f9-6491-40be-a499-0920b2121bb6" /> 这个是seataServer的配置 <img width="991" height="780" alt="seataserver配置" src="https://github.com/user-attachments/assets/a5e327f6-7d81-483d-931f-5d82f000084d" /> 这个是项目里seta的配置 <img width="941" height="783" alt="seatasclient配置" src="https://github.com/user-attachments/assets/f4e090ef-9828-4ec2-8dde-3ff324c2c1ee" /> 然后我在项目里通过import的方式有引入这个配置 <img width="1169" height="499" alt="代码配置" src="https://github.com/user-attachments/assets/89586367-9347-4639-8e19-088503dd36e5" /> `现在我启动项目出错 `. ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v3.5.9) 2026-01-16 12:43:37.319 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,532] Ignore load compatible class io.seata.config.ExtConfigurationProvider, because is not assignable from origin type org.apache.seata.config.ExtConfigurationProvider 2026-01-16 12:43:37.363 INFO 7708 [ye-auth] [ main] o.a.seata.config.ConfigurationFactory[load,74] load Configuration from :FileConfiguration$$EnhancerByCGLIB$$9e6bf6fd 2026-01-16 12:43:37.371 INFO 7708 [ye-auth] [ main] com.yekj.AuthApp[logStarting,53] Starting AuthApp using Java 21.0.9 with PID 7708 (D:\projects\ye-platform-code\ye-auth\ye-auth-service\target\classes started by 应尔科技-研发部001 in D:\projects\ye-platform-code) 2026-01-16 12:43:37.371 DEBUG 7708 [ye-auth] [ main] com.yekj.AuthApp[logStarting,54] Running with Spring Boot v3.5.9, Spring v6.2.15 2026-01-16 12:43:37.371 INFO 7708 [ye-auth] [ main] com.yekj.AuthApp[logStartupProfileInfo,652] No active profile set, falling back to 1 default profile: "default" 2026-01-16 12:43:37.393 INFO 7708 [ye-auth] [ main] c.a.c.n.c.NacosConfigDataLoader[log,68] [Nacos Config] Load config[dataId=ye-auth, group=DEFAULT_GROUP] success 2026-01-16 12:43:37.393 INFO 7708 [ye-auth] [ main] c.a.c.n.c.NacosConfigDataLoader[log,68] [Nacos Config] Load config[dataId=ye-seata, group=DEFAULT_GROUP] success 2026-01-16 12:43:37.394 INFO 7708 [ye-auth] [ main] c.a.c.n.c.NacosConfigDataLoader[log,68] [Nacos Config] Load config[dataId=ye-share, group=DEFAULT_GROUP] success 2026-01-16 12:43:37.912 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'org.apache.seata.spring.boot.autoconfigure.SeataCoreAutoConfiguration' of type [org.apache.seata.spring.boot.autoconfigure.SeataCoreAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor []? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.912 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'springApplicationContextProvider' of type [org.apache.seata.spring.boot.autoconfigure.provider.SpringApplicationContextProvider] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor []? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.913 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'org.apache.seata.spring.boot.autoconfigure.SeataAutoConfiguration' of type [org.apache.seata.spring.boot.autoconfigure.SeataAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor []? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.936 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'failureHandler' of type [org.apache.seata.tm.api.DefaultFailureHandlerImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor []? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.939 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.940 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.941 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda/0x00000264d76e40e8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.941 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.949 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'springCloudAlibabaConfiguration' of type [org.apache.seata.spring.boot.autoconfigure.properties.SpringCloudAlibabaConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.951 WARN 7708 [ye-auth] [ main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker[postProcessAfterInitialization,437] Bean 'seataProperties' of type [org.apache.seata.spring.boot.autoconfigure.properties.SeataProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [globalTransactionScanner]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. 2026-01-16 12:43:37.952 INFO 7708 [ye-auth] [ main] o.a.s.s.b.a.SeataAutoConfiguration[globalTransactionScanner,65] Automatically configure Seata 2026-01-16 12:43:37.957 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,528] Load compatible class io.seata.spring.annotation.ScannerChecker 2026-01-16 12:43:37.963 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,528] Load compatible class io.seata.config.ConfigurationProvider 2026-01-16 12:43:37.965 INFO 7708 [ye-auth] [ main] o.a.s.config.nacos.NacosConfiguration[initNacosAuthProperties,258] Nacos check auth with userName/password. 2026-01-16 12:43:37.970 INFO 7708 [ye-auth] [ main] c.a.n.client.config.NacosConfigService[<init>,77] Nacos client key init properties: serverAddr=localhost:8848 namespace=dev-space username=appuser password=a*****d 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,90] Load and match ServerListProvider com.alibaba.nacos.client.address.EndpointServerListProvider, match result: false 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,90] Load and match ServerListProvider com.alibaba.nacos.client.address.PropertiesListProvider, match result: true 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,94] Will use com.alibaba.nacos.client.address.PropertiesListProvider as ServerListProvider 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[getLabels,48] DefaultLabelsCollectorManager get labels..... 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[getLabels,62] Process LabelsCollector with [name:defaultNacosLabelsCollector] 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,64] default nacos collect properties raw labels: null 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,71] default nacos collect properties labels: {} 2026-01-16 12:43:37.971 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,74] default nacos collect jvm raw labels: null 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,80] default nacos collect jvm labels: {} 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,83] default nacos collect env raw labels: null 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[collectLabels,91] default nacos collect env labels: {} 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.labels[getLabels,50] DefaultLabelsCollectorManager get labels finished,labels :{} 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] c.a.n.p.a.s.c.ClientAuthPluginManager[init,56] [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 2026-01-16 12:43:37.972 INFO 7708 [ye-auth] [ main] c.a.n.p.a.s.c.ClientAuthPluginManager[init,56] [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[lambda$createClient$1,139] [RpcClientFactory] create a new rpc client of 317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda/0x00000264d7307678 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda/0x00000264d7307a88 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientFuzzyWatchNotifyRequestHandler 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 2026-01-16 12:43:38.022 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 2026-01-16 12:43:38.023 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Try to connect to server on start up, server: {serverIp = 'localhost', server main port = 8848} 2026-01-16 12:43:38.023 INFO 7708 [ye-auth] [ main] c.a.n.c.remote.client.grpc.GrpcClient[createNewManagedChannel,201] grpc client connection server: localhost ip, serverPort: 9848, grpcTslConfig: {"enableTls":false,"mutualAuthEnable":false,"trustAll":true} 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Success to connect to server [localhost:8848] on start up, connectionId = 1768538618044_172.23.0.1_51566 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda/0x00000264d744b9b8 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [remote.worker.0] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Notify connected event to listeners. 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [remote.worker.0] c.a.n.client.config.impl.ClientWorker[onConnected,780] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Connected,notify listen context... 2026-01-16 12:43:38.126 INFO 7708 [ye-auth] [remote.worker.0] c.a.n.client.config.impl.ClientWorker[onConnected,783] [317944df-3fe2-4c4a-b8c6-9002f8307c26_config-0] Connected,notify fuzzy listen context... 2026-01-16 12:43:38.135 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[initNotifyWarnTimeout,73] config listener notify warn timeout millis use default 60000 millis 2026-01-16 12:43:38.135 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[<clinit>,120] nacos.cache.data.init.snapshot = true 2026-01-16 12:43:38.136 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] service.disableGlobalTransaction+SEATA_GROUP+dev-space 2026-01-16 12:43:38.140 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=service.disableGlobalTransaction, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.151 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,528] Load compatible class io.seata.integration.tx.api.remoting.RemotingParser 2026-01-16 12:43:38.152 INFO 7708 [ye-auth] [ main] o.a.s.s.a.GlobalTransactionScanner[initClient,238] Initializing Global Transaction Clients ... 2026-01-16 12:43:38.155 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.bossThreadPrefix+SEATA_GROUP+dev-space 2026-01-16 12:43:38.155 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.bossThreadPrefix, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.162 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.workerThreadPrefix+SEATA_GROUP+dev-space 2026-01-16 12:43:38.162 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.workerThreadPrefix, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.169 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.shareBossWorker+SEATA_GROUP+dev-space 2026-01-16 12:43:38.169 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.shareBossWorker, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.176 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.type+SEATA_GROUP+dev-space 2026-01-16 12:43:38.176 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.type, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.183 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.workerThreadSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.184 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.workerThreadSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.190 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.server+SEATA_GROUP+dev-space 2026-01-16 12:43:38.190 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.server, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.200 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.heartbeat+SEATA_GROUP+dev-space 2026-01-16 12:43:38.200 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.heartbeat, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.206 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.rpcRmRequestTimeout+SEATA_GROUP+dev-space 2026-01-16 12:43:38.206 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.rpcRmRequestTimeout, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.214 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.rpcTmRequestTimeout+SEATA_GROUP+dev-space 2026-01-16 12:43:38.214 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.rpcTmRequestTimeout, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.219 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.enableClientBatchSendRequest+SEATA_GROUP+dev-space 2026-01-16 12:43:38.220 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableClientBatchSendRequest, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.229 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.clientSelectorThreadSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.229 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.clientSelectorThreadSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.234 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.enableClientSharedEventLoopGroup+SEATA_GROUP+dev-space 2026-01-16 12:43:38.234 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableClientSharedEventLoopGroup, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.238 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.rpcTcRequestTimeout+SEATA_GROUP+dev-space 2026-01-16 12:43:38.239 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.rpcTcRequestTimeout, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.244 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.enableTcServerBatchSendResponse+SEATA_GROUP+dev-space 2026-01-16 12:43:38.244 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableTcServerBatchSendResponse, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.249 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.minServerPoolSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.249 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.minServerPoolSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.253 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.maxServerPoolSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.253 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.maxServerPoolSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.258 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.maxTaskQueueSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.258 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.maxTaskQueueSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.263 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.keepAliveTime+SEATA_GROUP+dev-space 2026-01-16 12:43:38.263 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.keepAliveTime, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.267 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.minHttpPoolSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.267 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.minHttpPoolSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.271 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.maxHttpPoolSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.271 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.maxHttpPoolSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.275 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.maxHttpTaskQueueSize+SEATA_GROUP+dev-space 2026-01-16 12:43:38.275 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.maxHttpTaskQueueSize, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.279 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.httpPoolKeepAliveTime+SEATA_GROUP+dev-space 2026-01-16 12:43:38.279 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.httpPoolKeepAliveTime, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.286 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.threadFactory.clientSelectorThreadPrefix+SEATA_GROUP+dev-space 2026-01-16 12:43:38.286 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.threadFactory.clientSelectorThreadPrefix, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.324 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,528] Load compatible class io.seata.core.auth.AuthSigner 2026-01-16 12:43:38.325 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.enableTmClientBatchSendRequest+SEATA_GROUP+dev-space 2026-01-16 12:43:38.325 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableTmClientBatchSendRequest, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.329 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableTmClientBatchSendRequest, group=SEATA_GROUP, cnt=2 2026-01-16 12:43:38.330 INFO 7708 [ye-auth] [ main] o.a.s.c.r.n.AbstractNettyRemotingClient[registerChannelEventListener,377] register channel event listener: org.apache.seata.core.rpc.netty.TmNettyRemotingClient$2 2026-01-16 12:43:38.334 INFO 7708 [ye-auth] [ main] o.a.s.c.rpc.netty.NettyClientBootstrap[start,161] NettyClientBootstrap has started 2026-01-16 12:43:38.334 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] transport.enableTmClientChannelCheckFailFast+SEATA_GROUP+dev-space 2026-01-16 12:43:38.334 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=transport.enableTmClientChannelCheckFailFast, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.340 INFO 7708 [ye-auth] [ main] o.a.s.d.registry.RegistryFactory[buildRegistryService,55] use registry center type: nacos 2026-01-16 12:43:38.343 INFO 7708 [ye-auth] [ main] o.a.s.c.l.EnhancedServiceLoader$InnerEnhancedServiceLoader[findAllExtensionDefinition,528] Load compatible class io.seata.discovery.registry.RegistryProvider 2026-01-16 12:43:38.344 INFO 7708 [ye-auth] [ main] o.a.s.d.r.n.NacosRegistryServiceImpl[initNacosAuthProperties,326] Nacos check auth with userName/password. 2026-01-16 12:43:38.358 INFO 7708 [ye-auth] [ main] c.a.n.client.config.impl.ClientWorker[addCacheDataIfAbsent,462] [Config-fixed-dev-space-localhost_8848] [subscribe] service.vgroupMapping.ye_tx_group+SEATA_GROUP+dev-space 2026-01-16 12:43:38.358 INFO 7708 [ye-auth] [ main] c.a.nacos.client.config.impl.CacheData[addListener,257] [Config-fixed-dev-space-localhost_8848] [add-listener] ok, tenant=dev-space, dataId=service.vgroupMapping.ye_tx_group, group=SEATA_GROUP, cnt=1 2026-01-16 12:43:38.363 INFO 7708 [ye-auth] [ main] o.a.s.d.r.n.NacosRegistryServiceImpl[initNacosAuthProperties,326] Nacos check auth with userName/password. 2026-01-16 12:43:38.365 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[init,114] Nacos client key init properties: serverAddr=localhost:8848 namespace=dev-space username=appuser password=a*****d 2026-01-16 12:43:38.366 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[lambda$initNamespaceForNaming$1,71] initializer namespace from namespace attribute :null 2026-01-16 12:43:38.370 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[<init>,75] FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource 2026-01-16 12:43:38.373 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,90] Load and match ServerListProvider com.alibaba.nacos.client.address.EndpointServerListProvider, match result: false 2026-01-16 12:43:38.373 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,90] Load and match ServerListProvider com.alibaba.nacos.client.address.PropertiesListProvider, match result: true 2026-01-16 12:43:38.373 INFO 7708 [ye-auth] [ main] c.a.n.c.a.AbstractServerListManager[start,94] Will use com.alibaba.nacos.client.address.PropertiesListProvider as ServerListProvider 2026-01-16 12:43:38.373 INFO 7708 [ye-auth] [ main] c.a.n.p.a.s.c.ClientAuthPluginManager[init,56] [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 2026-01-16 12:43:38.373 INFO 7708 [ye-auth] [ main] c.a.n.p.a.s.c.ClientAuthPluginManager[init,56] [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 2026-01-16 12:43:38.425 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[lambda$createClient$1,139] [RpcClientFactory] create a new rpc client of b63af0b8-999f-4143-8162-4625467a1da5 2026-01-16 12:43:38.426 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[<init>,122] Create naming rpc client for uuid->b63af0b8-999f-4143-8162-4625467a1da5 2026-01-16 12:43:38.426 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.NamingServerListManager 2026-01-16 12:43:38.426 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService 2026-01-16 12:43:38.426 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler 2026-01-16 12:43:38.427 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingFuzzyWatchNotifyRequestHandler 2026-01-16 12:43:38.427 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Try to connect to server on start up, server: {serverIp = 'localhost', server main port = 8848} 2026-01-16 12:43:38.427 INFO 7708 [ye-auth] [ main] c.a.n.c.remote.client.grpc.GrpcClient[createNewManagedChannel,201] grpc client connection server: localhost ip, serverPort: 9848, grpcTslConfig: {"enableTls":false,"mutualAuthEnable":false,"trustAll":true} 2026-01-16 12:43:38.527 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Success to connect to server [localhost:8848] on start up, connectionId = 1768538618426_172.23.0.1_51568 2026-01-16 12:43:38.527 INFO 7708 [ye-auth] [remote.worker.0] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Notify connected event to listeners. 2026-01-16 12:43:38.527 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 2026-01-16 12:43:38.527 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.common.remote.client[printIfInfoEnabled,63] [b63af0b8-999f-4143-8162-4625467a1da5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda/0x00000264d744b9b8 2026-01-16 12:43:38.527 INFO 7708 [ye-auth] [remote.worker.0] com.alibaba.nacos.client.naming[onConnected,96] Grpc connection connect 2026-01-16 12:43:38.531 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[subscribe,167] [SUBSCRIBE-SERVICE] service:seata-server, group:SEATA_GROUP, clusters: 2026-01-16 12:43:38.531 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[subscribe,393] [GRPC-SUBSCRIBE] service:seata-server, group:SEATA_GROUP, cluster: 2026-01-16 12:43:38.543 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[doDiff,51] init new ips(1) service: SEATA_GROUP@@seata-server -> [{"instanceId":"192.168.110.51#8091#default#SEATA_GROUP@@seata-server","ip":"192.168.110.51","port":8091,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"default","serviceName":"SEATA_GROUP@@seata-server","metadata":{},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"instanceIdGenerator":"simple","ipDeleteTimeout":30000}] 2026-01-16 12:43:38.544 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[processServiceInfo,153] current ips:(1) service: SEATA_GROUP@@seata-server -> [{"instanceId":"192.168.110.51#8091#default#SEATA_GROUP@@seata-server","ip":"192.168.110.51","port":8091,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"default","serviceName":"SEATA_GROUP@@seata-server","metadata":{},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"instanceIdGenerator":"simple","ipDeleteTimeout":30000}] 2026-01-16 12:43:38.553 WARN 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[notifyIfSubscribed,664] Duplicate subscribe for groupName: SEATA_GROUP, serviceName: seata-server; directly use current cached to notify. 2026-01-16 12:43:38.553 INFO 7708 [ye-auth] [ main] com.alibaba.nacos.client.naming[subscribe,167] [SUBSCRIBE-SERVICE] service:seata-server, group:SEATA_GROUP, clusters: 2026-01-16 12:43:38.554 ERROR 7708 [ye-auth] [ main] o.a.s.c.r.n.NettyClientChannelManager[doReconnect,214] no available service found in cluster 'service.vgroupMapping.ye_tx_group=default', please make sure registry config correct and keep your seata server running 2026-01-16 12:43:38.554 WARN 7708 [ye-auth] [ main] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext[refresh,635] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'globalTransactionScanner' defined in class path resource [org/apache/seata/spring/boot/autoconfigure/SeataAutoConfiguration.class]: no available service found in cluster. 2026-01-16 12:43:38.568 ERROR 7708 [ye-auth] [ main] o.s.boot.SpringApplication[reportFailure,857] Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'globalTransactionScanner' defined in class path resource [org/apache/seata/spring/boot/autoconfigure/SeataAutoConfiguration.class]: no available service found in cluster. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1826) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:607) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:529) at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:339) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:373) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:337) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:207) at org.springframework.context.support.PostProcessorRegistrationDelegate.registerBeanPostProcessors(PostProcessorRegistrationDelegate.java:265) at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:808) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:611) at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:752) at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:439) at org.springframework.boot.SpringApplication.run(SpringApplication.java:318) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1361) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1350) at com.yekj.AuthApp.main(AuthApp.java:11) Caused by: org.apache.seata.common.exception.FrameworkException: no available service found in cluster. at org.apache.seata.core.rpc.netty.NettyClientChannelManager.throwFailFastException(NettyClientChannelManager.java:355) at org.apache.seata.core.rpc.netty.NettyClientChannelManager.doReconnect(NettyClientChannelManager.java:218) at org.apache.seata.core.rpc.netty.NettyClientChannelManager.initReconnect(NettyClientChannelManager.java:183) at org.apache.seata.core.rpc.netty.TmNettyRemotingClient.initConnection(TmNettyRemotingClient.java:333) at org.apache.seata.core.rpc.netty.TmNettyRemotingClient.init(TmNettyRemotingClient.java:220) at org.apache.seata.tm.TMClient.init(TMClient.java:48) at org.apache.seata.spring.annotation.GlobalTransactionScanner.initClient(GlobalTransactionScanner.java:253) at org.apache.seata.spring.annotation.GlobalTransactionScanner.afterPropertiesSet(GlobalTransactionScanner.java:536) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1873) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1822) ... 16 common frames omitted 2026-01-16 12:43:38.571 INFO 7708 [ye-auth] [ Thread-1] c.a.n.common.executor.ThreadPoolManager[lambda$static$0,54] [ThreadPoolManager] Start destroying ThreadPool 2026-01-16 12:43:38.571 INFO 7708 [ye-auth] [ Thread-7] c.a.n.common.http.HttpClientBeanHolder[shutdown,102] [HttpClientBeanHolder] Start destroying common HttpClient 2026-01-16 12:43:38.571 INFO 7708 [ye-auth] [ Thread-1] c.a.n.common.executor.ThreadPoolManager[lambda$static$0,56] [ThreadPoolManager] Completed destruction of ThreadPool 2026-01-16 12:43:38.571 INFO 7708 [ye-auth] [ Thread-9] c.a.nacos.common.notify.NotifyCenter[shutdown,135] [NotifyCenter] Start destroying Publisher ` nacos-server服务有注册到nacos <img width="1019" height="743" alt="seata服务" src="https://github.com/user-attachments/assets/6b732a08-4f32-4466-93bb-b12f835fc48c" /> 有遇到过类似问题的或者知道问题原因的朋友们来帮我一下吗? 跪求各位好心的大大们 GitHub link: https://github.com/apache/incubator-seata/discussions/7947 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
