|
@@ -3,6 +3,7 @@ package com.diagbot.client.hystrix;
|
|
|
|
|
|
import com.diagbot.client.AuthServiceClient;
|
|
|
import com.diagbot.entity.JWT;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
/**
|
|
@@ -11,10 +12,11 @@ import org.springframework.stereotype.Component;
|
|
|
* @time: 2018/8/2 13:37
|
|
|
*/
|
|
|
@Component
|
|
|
+@Slf4j
|
|
|
public class AuthServiceHystrix implements AuthServiceClient {
|
|
|
@Override
|
|
|
public JWT getToken(String authorization, String type, String username, String password) {
|
|
|
- System.out.println("--------opps getToken hystrix---------");
|
|
|
+ log.error("【hystrix】调用{}异常","getToken");
|
|
|
return null;
|
|
|
}
|
|
|
}
|