2 回答
TA贡献1946条经验 获得超4个赞
springboot支持通过set方法实现注入,我们可以利用非静态set方法注入静态变量
@Component // 需要添加Component注释才会被springboot管理
public class TestUtil {
@Value("${link.host}")
private static String linkHost;
// *核心:通过非静态set方法实现注入*
@Value("${link.host}")
public void setLinkHost(String linkHost) {
XunTongUtil.linkHost = linkHost;
}
public static JSONObject getAccessToken(String appid, String secret) {
String apiURL = linkHost + "/test/;
String responseStr = HttpUtil.sendGet(apiURL);
JSONObject json = JSONObject.fromObject(responseStr);
return json.getString("access_token");
return json;
}
}
在静态工具类中注入Bean
public class AccountManageClient {
@Autowired
private PcodeService pcodeService; // 尝试自动绑定Service
private static String getDepartmentPcode(String department) {
try {
List<PcodePO> pcodes = pcodeService.findAll(); // 尝试使用自动绑定的service
for (PcodePO pcode : pcodes) {
if (department.contains(pcode.getDepartment())) {
return pcode.getPcode();
}
}
} catch (Exception e) {
}
return "";
}
}
需要在保留原静态的属性(@Autowired)的同时,
添加一个该类的静态属性。同时声明一个返回值为void的方法,
在其中将非静态属性赋值给静态属性,该方法需要使用@PostConstruct注释
@Component // 1. 需要添加Component注释才会被springboot管理
public class AccountManageClient {
public static AccountManageClient accountManageClient; // 2.添加一个该类的静态对象作为属性
@Autowired
private PcodeService pcodeService;
// 3. 使用@PostConstruct方法引导绑定
@PostConstruct
public void init() {
accountManageClient = this;
accountManageClient.pcodeService = this.pcodeService;
}
private static String getDepartmentPcode(String department) {
try {
List<PcodePO> pcodes = accountManageClient.pcodeService.findAll(); // 4. 使用时需要这样实现
for (PcodePO pcode : pcodes) {
if (department.contains(pcode.getDepartment())) {
return pcode.getPcode();
}
}
} catch (Exception e) {
}
return "";
}
}
- 2 回答
- 0 关注
- 939 浏览
添加回答
举报