spring cloud config svn仓库配置

时间:2021-05-07 01:59:14

之前快速入门了一下spring cloud config

但是仓库用的别人博客上的git仓库,公司用的是svn项目管理中心,下面这个自己配置的时候出现的错误

You need to configure a uri for the git repository

解决:

1.svn环境下需要引入的包

<dependency>
<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>
</dependency>

2.配置下spring.profiles.active的属性

这是spring对不同启动环境的设置

spring cloud config默认是git环境

spring.profiles.active=subversion

详细 参考如下:

http://www.cnblogs.com/atliwen/p/6225085.html