JAVA-954: Migrate spring-social-login to parent-boot-2
This commit is contained in:
parent
1497cbd69b
commit
a93fc0541e
|
@ -8,9 +8,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-1</artifactId>
|
<artifactId>parent-boot-2</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../parent-boot-1</relativePath>
|
<relativePath>../parent-boot-2</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -42,13 +42,14 @@
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.thymeleaf.extras</groupId>
|
<groupId>org.thymeleaf.extras</groupId>
|
||||||
<artifactId>thymeleaf-extras-springsecurity4</artifactId>
|
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.social</groupId>
|
<groupId>org.springframework.social</groupId>
|
||||||
<artifactId>spring-social-facebook</artifactId>
|
<artifactId>spring-social-facebook</artifactId>
|
||||||
|
<version>${spring.social.facebook.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -61,6 +62,12 @@
|
||||||
<artifactId>h2</artifactId>
|
<artifactId>h2</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.bytebuddy</groupId>
|
||||||
|
<artifactId>byte-buddy-dep</artifactId>
|
||||||
|
<version>${bytebuddy.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test -->
|
<!-- test -->
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -94,4 +101,9 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<bytebuddy.version>1.10.9</bytebuddy.version>
|
||||||
|
<spring.social.facebook.version>2.0.3.RELEASE</spring.social.facebook.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -3,7 +3,7 @@ package com.baeldung.config;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
||||||
import org.springframework.boot.web.support.SpringBootServletInitializer;
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
||||||
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
package com.baeldung.config;
|
package com.baeldung.config;
|
||||||
|
|
||||||
import com.baeldung.security.FacebookSignInAdapter;
|
|
||||||
import com.baeldung.security.FacebookConnectionSignup;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
@ -14,22 +13,27 @@ import org.springframework.security.core.userdetails.UserDetailsService;
|
||||||
import org.springframework.social.connect.ConnectionFactoryLocator;
|
import org.springframework.social.connect.ConnectionFactoryLocator;
|
||||||
import org.springframework.social.connect.UsersConnectionRepository;
|
import org.springframework.social.connect.UsersConnectionRepository;
|
||||||
import org.springframework.social.connect.mem.InMemoryUsersConnectionRepository;
|
import org.springframework.social.connect.mem.InMemoryUsersConnectionRepository;
|
||||||
|
import org.springframework.social.connect.support.ConnectionFactoryRegistry;
|
||||||
import org.springframework.social.connect.web.ProviderSignInController;
|
import org.springframework.social.connect.web.ProviderSignInController;
|
||||||
|
import org.springframework.social.facebook.connect.FacebookConnectionFactory;
|
||||||
|
|
||||||
|
import com.baeldung.security.FacebookConnectionSignup;
|
||||||
|
import com.baeldung.security.FacebookSignInAdapter;
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
@EnableWebSecurity
|
@EnableWebSecurity
|
||||||
@ComponentScan(basePackages = { "com.baeldung.security" })
|
@ComponentScan(basePackages = { "com.baeldung.security" })
|
||||||
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
||||||
|
|
||||||
|
@Value("${spring.social.facebook.appSecret}")
|
||||||
|
String appSecret;
|
||||||
|
|
||||||
|
@Value("${spring.social.facebook.appId}")
|
||||||
|
String appId;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private UserDetailsService userDetailsService;
|
private UserDetailsService userDetailsService;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private ConnectionFactoryLocator connectionFactoryLocator;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private UsersConnectionRepository usersConnectionRepository;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private FacebookConnectionSignup facebookConnectionSignup;
|
private FacebookConnectionSignup facebookConnectionSignup;
|
||||||
|
|
||||||
|
@ -55,7 +59,19 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
||||||
@Bean
|
@Bean
|
||||||
// @Primary
|
// @Primary
|
||||||
public ProviderSignInController providerSignInController() {
|
public ProviderSignInController providerSignInController() {
|
||||||
|
ConnectionFactoryLocator connectionFactoryLocator = connectionFactoryLocator();
|
||||||
|
UsersConnectionRepository usersConnectionRepository = getUsersConnectionRepository(connectionFactoryLocator);
|
||||||
((InMemoryUsersConnectionRepository) usersConnectionRepository).setConnectionSignUp(facebookConnectionSignup);
|
((InMemoryUsersConnectionRepository) usersConnectionRepository).setConnectionSignUp(facebookConnectionSignup);
|
||||||
return new ProviderSignInController(connectionFactoryLocator, usersConnectionRepository, new FacebookSignInAdapter());
|
return new ProviderSignInController(connectionFactoryLocator, usersConnectionRepository, new FacebookSignInAdapter());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ConnectionFactoryLocator connectionFactoryLocator() {
|
||||||
|
ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();
|
||||||
|
registry.addConnectionFactory(new FacebookConnectionFactory(appId, appSecret));
|
||||||
|
return registry;
|
||||||
|
}
|
||||||
|
|
||||||
|
private UsersConnectionRepository getUsersConnectionRepository(ConnectionFactoryLocator connectionFactoryLocator) {
|
||||||
|
return new InMemoryUsersConnectionRepository(connectionFactoryLocator);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue