删除冗余文件
parent
de8473b698
commit
723558ffdf
|
@ -5,10 +5,6 @@ public interface DemoService {
|
||||||
/**
|
/**
|
||||||
* 获取百度云的访问AccessToken
|
* 获取百度云的访问AccessToken
|
||||||
*/
|
*/
|
||||||
String getAccessToken();
|
String hello();
|
||||||
|
|
||||||
/**
|
|
||||||
* 刷新百度云的访问AccessToken 失效时候使用
|
|
||||||
*/
|
|
||||||
String refreshAccessToken();
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,29 +1,17 @@
|
||||||
package com.kdayun.demo.service.impl;
|
package com.kdayun.demo.service.impl;
|
||||||
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import com.kdayun.demo.service.DemoService;
|
import com.kdayun.demo.service.DemoService;
|
||||||
import com.kdayun.demo.util.Utils;
|
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class DemoServiceImpl implements DemoService {
|
public class DemoServiceImpl implements DemoService {
|
||||||
public static String baiduAccessToken = "";
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getAccessToken() {
|
public String hello() {
|
||||||
if (StringUtils.isNotBlank(baiduAccessToken)) {
|
|
||||||
return baiduAccessToken;
|
return "hello";
|
||||||
} else {
|
|
||||||
baiduAccessToken = Utils.getAccessToken();
|
|
||||||
}
|
|
||||||
return baiduAccessToken;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String refreshAccessToken() {
|
|
||||||
baiduAccessToken = Utils.getAccessToken();
|
|
||||||
return baiduAccessToken;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
package com.kdayun.demo.util;
|
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
|
|
||||||
public class Utils {
|
|
||||||
|
|
||||||
@Value("${demo.appid}")
|
|
||||||
private String appid;
|
|
||||||
@Value("${demo.appkey}")
|
|
||||||
private String appkey;
|
|
||||||
@Value("${demo.secretkey}")
|
|
||||||
private String secretkey;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 请求获取微信的授权Accesstoken
|
|
||||||
*/
|
|
||||||
public static String getAccessToken() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue