Merge pull request #3916 from steinhauer-software/BAEL-1489
BAEL-1489: Password storage in Spring Security 5
This commit is contained in:
		
						commit
						30eeb09828
					
				| @ -1,22 +1,22 @@ | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<groupId>com.baeldung</groupId> | ||||
| 	<artifactId>spring-5-security</artifactId> | ||||
| 	<version>0.0.1-SNAPSHOT</version> | ||||
| 	<packaging>jar</packaging> | ||||
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <groupId>com.baeldung</groupId> | ||||
|     <artifactId>spring-5-security</artifactId> | ||||
|     <version>0.0.1-SNAPSHOT</version> | ||||
|     <packaging>jar</packaging> | ||||
| 
 | ||||
| 	<name>spring-5-security</name> | ||||
| 	<description>spring 5 security sample project</description> | ||||
|     <name>spring-5-security</name> | ||||
|     <description>spring 5 security sample project</description> | ||||
| 
 | ||||
| 	<parent> | ||||
| 		<groupId>org.springframework.boot</groupId> | ||||
| 		<artifactId>spring-boot-starter-parent</artifactId> | ||||
| 		<version>2.0.0.RC2</version> | ||||
| 		<relativePath /> <!-- lookup parent from repository --> | ||||
| 	</parent> | ||||
|     <parent> | ||||
|         <groupId>org.springframework.boot</groupId> | ||||
|         <artifactId>spring-boot-starter-parent</artifactId> | ||||
|         <version>2.0.0.RELEASE</version> | ||||
|         <relativePath/> <!-- lookup parent from repository --> | ||||
|     </parent> | ||||
| 
 | ||||
| 	<dependencies> | ||||
|     <dependencies> | ||||
| 
 | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| @ -35,80 +35,80 @@ | ||||
| 			<artifactId>thymeleaf-extras-springsecurity4</artifactId> | ||||
| 		</dependency> | ||||
| 
 | ||||
| 		<!-- oauth2 --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.security</groupId> | ||||
| 			<artifactId>spring-security-oauth2-client</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.security</groupId> | ||||
| 			<artifactId>spring-security-oauth2-jose</artifactId> | ||||
| 		</dependency> | ||||
|         <!-- oauth2 --> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.security</groupId> | ||||
|             <artifactId>spring-security-oauth2-client</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.security</groupId> | ||||
|             <artifactId>spring-security-oauth2-jose</artifactId> | ||||
|         </dependency> | ||||
| 
 | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework</groupId> | ||||
| 			<artifactId>spring-test</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-test</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.security</groupId> | ||||
| 			<artifactId>spring-security-test</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 	</dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework</groupId> | ||||
|             <artifactId>spring-test</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-test</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.security</groupId> | ||||
|             <artifactId>spring-security-test</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 
 | ||||
| 	<build> | ||||
| 		<plugins> | ||||
| 			<plugin> | ||||
| 				<groupId>org.springframework.boot</groupId> | ||||
| 				<artifactId>spring-boot-maven-plugin</artifactId> | ||||
| 			</plugin> | ||||
|     <build> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.springframework.boot</groupId> | ||||
|                 <artifactId>spring-boot-maven-plugin</artifactId> | ||||
|             </plugin> | ||||
| 
 | ||||
| 			<plugin> | ||||
| 				<groupId>org.apache.maven.plugins</groupId> | ||||
| 				<artifactId>maven-surefire-plugin</artifactId> | ||||
| 				<configuration> | ||||
| 					<forkCount>3</forkCount> | ||||
| 					<reuseForks>true</reuseForks> | ||||
| 					<parallel>methods</parallel> | ||||
| 					<useUnlimitedThreads>true</useUnlimitedThreads> | ||||
| 					<excludes> | ||||
| 						<exclude>**/*IntegrationTest.java</exclude> | ||||
| 						<exclude>**/*LiveTest.java</exclude> | ||||
| 					</excludes> | ||||
| 				</configuration> | ||||
| 			</plugin> | ||||
| 		</plugins> | ||||
| 	</build> | ||||
| 	 | ||||
| 	<repositories> | ||||
| 		<repository> | ||||
| 			<id>spring-milestones</id> | ||||
| 			<name>Spring Milestones</name> | ||||
| 			<url>https://repo.spring.io/milestone</url> | ||||
| 			<snapshots> | ||||
| 				<enabled>false</enabled> | ||||
| 			</snapshots> | ||||
| 		</repository> | ||||
| 	</repositories> | ||||
| 	<pluginRepositories> | ||||
| 		<pluginRepository> | ||||
| 			<id>spring-milestones</id> | ||||
| 			<name>Spring Milestones</name> | ||||
| 			<url>https://repo.spring.io/milestone</url> | ||||
| 			<snapshots> | ||||
| 				<enabled>false</enabled> | ||||
| 			</snapshots> | ||||
| 		</pluginRepository> | ||||
| 	</pluginRepositories> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-surefire-plugin</artifactId> | ||||
|                 <configuration> | ||||
|                     <forkCount>3</forkCount> | ||||
|                     <reuseForks>true</reuseForks> | ||||
|                     <parallel>methods</parallel> | ||||
|                     <useUnlimitedThreads>true</useUnlimitedThreads> | ||||
|                     <excludes> | ||||
|                         <exclude>**/*IntegrationTest.java</exclude> | ||||
|                         <exclude>**/*LiveTest.java</exclude> | ||||
|                     </excludes> | ||||
|                 </configuration> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| 
 | ||||
| 	<properties> | ||||
| 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
| 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||||
| 		<java.version>1.8</java.version> | ||||
| 	</properties> | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>spring-milestones</id> | ||||
|             <name>Spring Milestones</name> | ||||
|             <url>https://repo.spring.io/milestone</url> | ||||
|             <snapshots> | ||||
|                 <enabled>false</enabled> | ||||
|             </snapshots> | ||||
|         </repository> | ||||
|     </repositories> | ||||
|     <pluginRepositories> | ||||
|         <pluginRepository> | ||||
|             <id>spring-milestones</id> | ||||
|             <name>Spring Milestones</name> | ||||
|             <url>https://repo.spring.io/milestone</url> | ||||
|             <snapshots> | ||||
|                 <enabled>false</enabled> | ||||
|             </snapshots> | ||||
|         </pluginRepository> | ||||
|     </pluginRepositories> | ||||
| 
 | ||||
|     <properties> | ||||
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
|         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||||
|         <java.version>1.8</java.version> | ||||
|     </properties> | ||||
| </project> | ||||
| @ -21,7 +21,6 @@ import java.util.Map; | ||||
| @Configuration | ||||
| public class PasswordStorageWebSecurityConfigurer extends WebSecurityConfigurerAdapter { | ||||
| 
 | ||||
| 
 | ||||
|     @Override | ||||
|     protected void configure(AuthenticationManagerBuilder auth) throws Exception { | ||||
|         auth.eraseCredentials(false) // 4 | ||||
| @ -31,8 +30,11 @@ public class PasswordStorageWebSecurityConfigurer extends WebSecurityConfigurerA | ||||
| 
 | ||||
|     @Bean | ||||
|     public UserDetailsService getUserDefaultDetailsService() { | ||||
|         User testUser = new User("baeldung", "{noop}SpringSecurity5", Collections.emptyList()); | ||||
|         return new InMemoryUserDetailsManager(testUser); | ||||
|         return new InMemoryUserDetailsManager(User | ||||
|           .withUsername("baeldung") | ||||
|           .password("{noop}SpringSecurity5") | ||||
|           .authorities(Collections.emptyList()) | ||||
|           .build()); | ||||
|     } | ||||
| 
 | ||||
|     @Bean | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user