You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by GitBox <gi...@apache.org> on 2022/05/19 06:17:24 UTC

[GitHub] [servicecomb-java-chassis] Zhuwanshun commented on issue #2937: 开发edge-service,服务已正常启动,可以进行路由转发,但是在服务内部调用其他微服务出现了问题

Zhuwanshun commented on issue #2937:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2937#issuecomment-1131261030

   开发的edge-service开启了TSL通信,pom文件加了以下依赖 servicecomb.version 2.6.0
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>edge-core</artifactId>
           </dependency>
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>handler-loadbalance</artifactId>
           </dependency>
   
           <dependency>
               <groupId>xxxxxxx</groupId>
               <artifactId>common-cse</artifactId>
           </dependency>
   
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>solution-basic</artifactId>
               <exclusions>
                   <exclusion>
                       <artifactId>transport-highway</artifactId>
                       <groupId>org.apache.servicecomb</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>netty-tcnative-boringssl-static</artifactId>
                       <groupId>io.netty</groupId>
                   </exclusion>
               </exclusions>
           </dependency>
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>java-chassis-spring-boot-starter-standalone</artifactId>
               <exclusions>
                   <exclusion>
                       <artifactId>spring-boot-starter-logging</artifactId>
                       <groupId>org.springframework.boot</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>tomcat-embed-logging-juli</artifactId>
                       <groupId>org.apache.tomcat.embed</groupId>
                   </exclusion>
                   <exclusion>
                       <groupId>log4j</groupId>
                       <artifactId>log4j</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   common-cse里主要有这些依赖
   <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>swagger-invocation-validator</artifactId>
               <version>${servicecomb.version}</version>
           </dependency>
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>foundation-ssl</artifactId>
               <version>${servicecomb.version}</version>
               <exclusions>
                   <exclusion>
                       <groupId>io.netty</groupId>
                       <artifactId>netty-tcnative-boringssl-static</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
           <dependency>
               <groupId>org.apache.servicecomb</groupId>
               <artifactId>provider-springmvc</artifactId>
               <version>${servicecomb.version}</version>
           </dependency>
   


-- 
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: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org