Unauthorized in spring boot admin

后端 未结 4 1415
遥遥无期
遥遥无期 2021-02-07 22:38

I wanted to control the microservices that are running in the Eureka server. I used spring-boot-admin for this, but I am getting the error on accessing the information about the

4条回答
  •  天涯浪人
    2021-02-07 22:59

    I have had a similar issue. On my spring boot application we had a cors filter to block Http Head requests. So head requests cannot be accepted.

    • Check Javascript console log and application log.

    • Setting management.security.enabled=false in the application.properties also necessary.

提交回复
热议问题