Spring踩坑 Spring问题汇总

1,791 阅读1分钟

一、Spring

1.1 @Resource annotation is not supported on static fields。

【问题背景】 在实际场景中,我调用的SalesService是个Dubbo接口,只能通过@Resource调用,而且希望是static,但是实际运行发现会报错:@Resource annotation is not supported on static fields。 【解决方案】 写set方法,在set方法上做注解。

@Service
public final class OAuthUtil {
	private static OAuthService oauthService;
 
	@Resource(name = "oauthService")
	public void setOauthService(OAuthService oauthService) {
		OAuthUtil.oauthService = oauthService;
	}