来自github的spring cloud配置服务器

时间:2017-09-29 06:52:47

标签: spring-cloud spring-cloud-config

我对此问题深感困惑。

这是application.properties:

spring.application.name=config-server
server.port=7001
spring.cloud.config.server.git.uri=https://github.com/spring-cloud-samples/config-repo

这是应用程序主要:

@EnableConfigServer
@SpringBootApplication
public class Application {
   public static void main(String[] args) {
    new SpringApplicationBuilder(Application.class).web(true).run(args);
  }
}

但响应时间太长了,实际上去年它运行良好。但现在:(春季启动版:任何(尝试多个版本),以及添加git.username&密码) 结果是如此长的时间,没有回应。  当然,如果通过本地方式获取配置文件,那就可以了!

0 个答案:

没有答案