如何让pcf app manager显示我的检测为spring启动的应用程序的信息?

nxagd54h  于 2021-06-26  发布在  Java
关注(0)|答案(0)|浏览(245)

我有一个spring-boot应用程序正在部署到pivotalcloudfoundry(pcf)。pcf将应用程序识别为spring引导应用程序。但是,没有显示任何信息。
应用程序正在使用上下文路径运行。已将配置添加到重新Map:
/CloudFoundry应用程序
/致动器/普罗米修斯
/健康
从外到内的上下文路径。我可以打开 /actuator/prometheus 以及 /health 在我的浏览器中。 /cloudfoundryapplication 返回http 401错误页。
我加了一句

management:
  cloudfoundry:
    enabled: true
    skip-ssl-validation: true

application.yml .
SpringSecurity正在运行,但配置为忽略以下所有URL。

@Override
public void configure(WebSecurity web) throws Exception
{
   web.ignoring()
      .antMatchers("/health",
                   "/actuator/health",
                   "/actuator/prometheus",
                   "/cloudfoundryapplication",
                   "/actuator/cloudfoundryapplication",
                   "/cloudfoundryapplication/**",
                   //"/report/daily",
                   "/index.html",
                   "/index.html**",
                   "/favicon.ico");
}

那么,我如何才能让pcf实际显示我的应用程序的运行状况,并像spring boot应用程序那样对待它呢?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题