spring-cloud-config服务器 - org.springframework.cloud.config.server.environment.NoSuchRepositoryException |无法克隆或结帐存储库:?

时间:2018-01-04 16:14:36

标签: spring spring-boot spring-cloud spring-cloud-config

我正在使用Spring Cloud,并使用Config-server外部化微服务的属性。

以下是config-server的清单文件

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mCtx);
    Notification notification;
    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    notification = mBuilder.setSmallIcon(R.mipmap.ic_launcher).setTicker(title).setWhen(0)
            .setAutoCancel(true)
            .setContentIntent(resultPendingIntent)
            .setContentTitle(title)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setLargeIcon(BitmapFactory.decodeResource(mCtx.getResources(), R.mipmap.ic_launcher))
            .setContentText(message)
            .setSound(defaultSoundUri)
            .build();

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

   // mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));

    NotificationManager notificationManager = (NotificationManager) mCtx.getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(ID_SMALL_NOTIFICATION, notification);

但在访问Rest Endpoint http://localhost:8888/application/default时 我超越了异常。

{{1}}

1 个答案:

答案 0 :(得分:0)

您配置中的存储库指向https://github.com/Girdhars/config-server.git,但是在浏览器中导航后,我收到301 Moved permanently,并且将我重定向到https://github.com/rathore-girdharsingh/config-server

因此,我认为您的问题与此重定向相关。我发现this StackOverflow answer说:

  

https://git.eclipse.org/r/#/c/46261/(已于2017年2月合并)中进行了更改,JGit应该能够遵循HTTP 301状态代码(永久移动)。

顺便说一句,我做了一个快速检查-您的配置现在可以在新版本的Spring Cloud(Finchley.RELEASE)和Spring Boot(2.0.3.RELEASE)上运行