@Resource annotation is not supported on static fields
问题解决
写set方法,在set方法上做注解
@Component
public final class OAuthUtil {
private static OAuthService oauthService;
@Resource(name = "woldoauthService")
public void setOauthService(OAuthService oauthService) {
OAuthUtil.oauthService = oauthService;
}
}
'날리지' 카테고리의 다른 글
install psycopg2 on ubuntu 18.04 (0) | 2020.01.22 |
---|---|
[eclipse] remove project from eclipse (0) | 2019.10.31 |
[Error]Ajax에서 컨트롤러에서 넘어온 한글이 깨질 때, (0) | 2019.10.28 |