我正在遵循此array_map来在我的Google Spring Boot App上实施身份验证。 IntelliJ无法从org.springframework.security中识别核心,并且报表无法解析符号“核心”。
我已经为oauth2-core添加了最新版本的依赖项:
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-core</artifactId>
<version>5.1.0.RELEASE</version>
</dependency>
我要添加的类如下:
public class ClientRegistration {
private String registrationId;
private String clientId;
private String clientSecret;
private ClientAuthenticationMethod clientAuthenticationMethod;
private AuthorizationGrantType authorizationGrantType;
private String redirectUriTemplate;
private Set<String> scopes;
private ProviderDetails providerDetails;
private String clientName;
}
ClientAuthenticationMethod和AuthorizationGrantType将从到目前为止我的项目无法加载的核心库中导入。
可能是什么原因? 我正在使用Spring Boot 2.0.4。
答案 0 :(得分:0)
好吧,在使缓存无效并重新启动IntelliJ之后,该错误消失了。