spring cloud config svn仓库配置
Posted 小路他大哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud config svn仓库配置相关的知识,希望对你有一定的参考价值。
之前快速入门了一下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
以上是关于spring cloud config svn仓库配置的主要内容,如果未能解决你的问题,请参考以下文章
0702-spring cloud config-git仓库配置用户授权
Spring Cloud搭建手册——Spring Cloud Config
微服务SpringCloud之Spring Cloud Config配置中心SVN