代码之家  ›  专栏  ›  技术社区  ›  Justinas Jakavonis

带有Azure应用程序配置的Spring引导应用程序在启动期间输出徽标并停止

  •  0
  • Justinas Jakavonis  · 技术社区  · 4 年前

    Create a Java Spring app with Azure App Configuration . 我用 Spring Boot v2.2.5.RELEASE

    <dependency>
        <groupId>com.microsoft.azure</groupId>
        <artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
        <version>1.2.2</version>
    </dependency>
    

    /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
    ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
     \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
      '  |____| .__|_| |_|_| |_\__, | / / / /
     =========|_|==============|___/=/_/_/_/
     :: Spring Boot ::        (v2.2.5.RELEASE)
    

    它停了几分钟,然后抛出:

    java.lang.RuntimeException: Max retries 12 times exceeded. Connection timed out: no further information: appconfigtest.azconfig.io:ip_address:443
    
    ...
    
    Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection timed out: no further information: appconfigtest.azconfig.io:ip_address:443
    Caused by: java.net.ConnectException: Connection timed out: no further information
    

    试图配置代理设置,但没有帮助。

    当我尝试使用.NET Core中的Azure CLI、.NET Core和Azure函数从同一台计算机访问相同的应用程序配置时,它运行良好并显示值。

    如何调查/解决问题?

    0 回复  |  直到 4 年前