Developing project with security is quite hassle if we are developing the functionality. In order to run without Spring Security:

java -Dmanagement.security.enabled=false -Dsecurity.ignored="/**" springboot-app.jar

It means, setup:

management.security.enabled: false
security.ignored: "/**"

SOURCE: stackoverflow

Now, do other thing as usual.