wu-sheng commented on code in PR #127: URL: https://github.com/apache/skywalking-java/pull/127#discussion_r855713260
########## test/plugin/scenarios/servicecomb-2.x-scenario/src/main/java/org/apache/skywalking/apm/testcase/servicecomb/consumer/CodeFirstPojoConsumerHelloImpl.java: ########## @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package org.apache.skywalking.apm.testcase.servicecomb.consumer; + +import java.util.concurrent.ExecutionException; + +import org.apache.log4j.Logger; +import org.apache.servicecomb.provider.pojo.RpcReference; +import org.apache.servicecomb.provider.pojo.RpcSchema; +import org.apache.skywalking.apm.testcase.servicecomb.schema.Hello; +import org.apache.skywalking.apm.testcase.servicecomb.schema.models.Person; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; + +@RpcSchema(schemaId = "codeFirstSpringmvcHelloClient") +@RequestMapping(path = "/servicecomb") +public class CodeFirstPojoConsumerHelloImpl { + private static Logger LOGGER = Logger.getLogger(CodeFirstPojoConsumerHelloImpl.class); + + @RpcReference(microserviceName = "codefirsttest", schemaId = "codeFirstHello") + private Hello hello; + + @RequestMapping(path = "/say", method = RequestMethod.GET) + public String say() { + String repo = "sayHi invoke filed"; + try { + repo = hello.sayHi("Java Chassis"); + } catch (Exception e) { + LOGGER.error("sayHi invoke filed"); + } + return repo; + } + + @RequestMapping(path = "/say1", method = RequestMethod.GET) Review Comment: > Can your framework test only one entryService at a time? We provide one entry for testing. You could use sync and async to call 3rd party if you like. We don't limit this. -- 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]
