glynnwei commented on issue #14198:
URL: https://github.com/apache/dubbo/issues/14198#issuecomment-2114126061

   > > ... 
   > > <maven.compiler.source>1.8</maven.compiler.source> 
   > > <maven.compiler.target>1.8</maven.compiler.target> 
   > > <dubbo.version>3.2.11</dubbo.version> 
   > > < spring-boot.version>2.6.4</spring-boot.version> 
   > > ... 
   > > 
   > > org.apache.dubbo.extensions 
   > > dubbo-registry-etcd3 
   > > 3.2.0 
   > > 
   > > 
   > > org.apache.dubbo.extensions 
   > > dubbo-metadata-report-etcd 
   > > 3.2 .0 
   > > 
   > > 
   > > org.apache.dubbo 
   > > dubbo-spring-boot-observability-starter 
   > > 3.2.11 
   > > 
   > > 
   > > org.apache.dubbo 
   > > dubbo-metrics-api 
   > > 3.2.11 
   > > 
   > > ...
   > 
   > 
请尝试添加`dubbo-spring-boot-starter`依赖项和必要的注册表启动器依赖项。一旦添加`dubbo-metrics-api`就不需要了。`dubbo-spring-boot-starter`
   ```
   <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-spring-boot-starter</artifactId>
               <version>3.2.11</version>
           </dependency>
           <dependency>
               <groupId>org.apache.dubbo</groupId>
               <artifactId>dubbo-spring-boot-observability-starter</artifactId>
               <version>3.2.11</version>
           </dependency>
           <dependency>
               <groupId>org.apache.dubbo.extensions</groupId>
               <artifactId>dubbo-registry-etcd3</artifactId>
               <version>3.2.0</version>
           </dependency>
           <dependency>
               <groupId>org.apache.dubbo.extensions</groupId>
               <artifactId>dubbo-metadata-report-etcd</artifactId>
               <version>3.2.0</version>
           </dependency>
   ```
   Thanks. It's still the same problem after modification
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to