Spring Boot 2.0 disable default security

后端 未结 11 2594
闹比i
闹比i 2020-12-02 11:28

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

11条回答
  •  失恋的感觉
    2020-12-02 11:42

    I think what you are looking for is to override the default authentication entry point which is set to BasicAuthenticationEntryPoint.

    This entrypoint adds the

    "WWW-Authenticate": "Basic realm=..."

    header that tells your browser to use Basic Auth.

提交回复
热议问题