Currently I got the main class:
package com.recweb.springboot;
import org.springframework.boot.SpringApplication;
im
You need to set Password encoder , check the following sample
PasswordEncoder encoder =
PasswordEncoderFactories.createDelegatingPasswordEncoder();
auth.inMemoryAuthentication().passwordEncoder(encoder).withUser("Ahmad")
.password("1600").roles("USER", "ADMIN").and().withUser("Belal").password("1515").roles("USER");