I want to use Spring Security for JWT authentication. But it comes with default authentication. I am trying to disable it, but the old approach of doing this - disabling it
You can add/modify the following to your Application class:
@SpringBootApplication(exclude = { SecurityAutoConfiguration.class }) public class MyApplication { }