CompanyServiceHystrix.java
429 字节
package cn.dnect.companyconsumer.service.hystrix;
import cn.dnect.companyconsumer.service.CompanyService;
import org.springframework.stereotype.Component;
/**
* Created with IntelliJ IDEA.
* Date: 2019/2/18
* Time: 14:57
*
* @author: 二条
* Description:
*/
@Component
public class CompanyServiceHystrix implements CompanyService {
@Override
public String sayHi(String name) {
return "em....";
}
}