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.jarIt means, setup:
management.security.enabled: falsesecurity.ignored: "/**"SOURCE: stackoverflow
Now, do other thing as usual.

