I added one custom Security Config in my application on Spring Boot, but the message about \"Using default security password\" is still there in LOG file.
Is there a
I found out a solution about excluding SecurityAutoConfiguration class.
Example:
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class }) public class ReportApplication { public static void main(String[] args) throws Exception { SpringApplication.run(MyApplication.class, args); } }