Swagger 2 is not launching. Keep getting 401 Unauthorized error

I can't launch swagger on my http://localhost:8080/swagger-ui/. Web browser shows that the page isn't working and writes 401 error:
I'm using Spring Boot v3.0.5. And Spring Security 6.0.2.
Dependencies:
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>3.0.0</version>
        </dependency>
swagger_err1.png
Was this page helpful?