org.springframework.security.extensions.saml2.config.SAMLConfigurer не существует
По крайней мере, я не могу импортировать org.springframework.security.extensions.saml2.config.SAMLConfigurer в моем классе конфигурации безопасности метод saml () не был определен.
исходный код SecurityConfiguration.java :
package com.hem.configuration;
import com.hem.properties.ServerProxy;
import com.hem.properties.ServerSsl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.extensions.saml2.config.SAMLConfigurer;
@EnableWebSecurity
@Configuration
@EnableGlobalMethodSecurity(securedEnabled = true)
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
private static final String HTTPS = "https";
@Value("${security.saml2.metadata-url}")
private String metadataUrl;
@Value("${saml.entity.id}")
private String entityId;
@Autowired
private ServerProxy serverProxy;
@Autowired
private ServerSsl serverSsl;
@Autowired
private SAMLUserDetailsServiceImpl samlUserDetailsServiceImpl;
@Override
protected void configure(final HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/saml*").permitAll()
.antMatchers("/images/apple-touch-icon.png").permitAll()
.anyRequest().authenticated()
.and()
.apply(saml()) //<-can't find this method
.userDetailsService(samlUserDetailsServiceImpl)
.serviceProvider()
.keyStore()
.storeFilePath(serverSsl.getKeyStore())
.password(serverSsl.getKeyStorePassword())
.keyname(serverSsl.getKeyAlias())
.keyPassword(serverSsl.getKeyStorePassword())
.and()
.protocol(HTTPS)
.hostname(String.format("%s:%s", serverProxy.getHost(), serverProxy.getPort()))
.basePath("/")
.entityId(entityId)
.and()
.identityProvider()
.metadataFilePath(this.metadataUrl);
}
}
Зависимости в моем pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-core</artifactId>
<version>1.0.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml-dsl</artifactId>
<version>1.0.0.M2</version>
</dependency>
Пожалуйста, поделитесь своим опытом, если вы знаете, как решить эту проблему.
Если вам нужно большеинформация - я исправлю запрос.