0
  1. 我將應用程序服務management.context-path設置爲/ mgmt並將其註冊到eureka服務器。

eureka: instance: statusPageUrlPath: ${management.context-path}/info healthCheckUrlPath: ${management.context-path}/health metadata-map: management.context-path: ${management.context-path} prefer-ip-address: true client: serviceUrl: defaultZone: http://registry:7000/eureka/ 如何在springboot中設置jolokia上下文路徑admin

  • 當我在管理UI(另一個不同的服務,和註冊表尤里卡服務器)查看JMX,我得到了一些安全問題。實際上我的/管理/ *添加到白名單
  • http.authorizeRequests() .antMatchers("/" ,"/mgmt/*","/jolokia","/jolokia/**").permitAll()

    如何設置springboot管理的椒上下文路徑?

    enter image description here

    回答

    0

    哦˚FK,只是一個錯誤,改變/管理/ *到/管理/,它的工作原理。

    http.authorizeRequests() .antMatchers("/" , "/mgmt/**","/jolokia","/jolokia/**").permitAll()

    相關問題