There are three ways in which users can be defined in Spring boot security.

One is a default user created by Spring and other two are used to change default username and password.
Both of these disable default user name and password creation by Spring security.

All the three methods are discussed in this article.

Method 1: Spring boot security auto configuration
As a part of Spring boot security auto configuration, if you do nothing, then Spring boot creates a user with name user and generates a password at application startup.
This password is visible on application console and changes every time it restarts as shown below,

2020-04-24 22:23:51.358 INFO 14272 — [ main] .s.s.UserDetailsServiceAutoConfiguration :

Using generated security password: 956f97e5-8e7a-4821-ae38-e59354456567

2020-04-24 22:23:53.538 INFO 14272 — [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain

Method 2: Using application.properties file
If you do not want to go with the default username and password generated by Spring boot security(or override it) or simply disable it, define following properties in application.properties file.

spring.security.user.name=root
spring.security.user.password=Root1234

Defining a username and password here will disable automatic generation of a user and you will not see the password written on the console.
If there is no application.properties file, create it in the root directory or src/main/resources folder.
Method 3: In memory user creation
If application.properties is not your choice, Spring boot security provides another way to change default user and password, inside application code or in-memory.

For this, you need to tweak into Spring’s default behavior and provide a class that overrides this behavior.
This class must extend WebSecurityConfigurerAdapter and override its configure method as shown below.

package com.codippa.security;

import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.password.NoOpPasswordEncoder;

@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {

   @Override
   protected void configure(AuthenticationManagerBuilder builder) throws Exception {
     builder.inMemoryAuthentication().
     withUser("user").
     password("pass").roles("USER").and().
     withUser("admin").
     password("admin").roles("ADMIN").and().
     passwordEncoder(NoOpPasswordEncoder.getInstance());
   }
}

With this method, you can create multiple users at once using and() method.
Note that you also need to provide roles of created users otherwise an error will be thrown.

java.lang.IllegalArgumentException: Cannot pass a null GrantedAuthority collection

A role need not be “USER” or “ADMIN”, it can be any String which could be later used to provide or restrict access to certain URLs and resources.

Note that we are calling passwordEncoder() method at the end. This is used to inform the type of password encoder spring security must use to encode the password.
For demo purposes, we are using NoOpPasswordEncoder. It means that the password should not be encoded.
This should not be used in real applications and that is why, it is deprecated.

Be careful to override configure that takes an argument of type AuthenticationManagerBuilder since there is another overridable configure method that takes an object of type HttpSecurity as argument.

In case, you have created users in both application.properties and in-memory users, any of those can be used for login.

With this method, you can create any number of users for in memory authentication as opposed to the first two methods, where only one user can be created.

Hope this article was useful.

Leave a Reply