四个配置文件都有一个e-book属性,只是值不一样。然后将这个四个配置文件上传到码云中我们新创建的仓库
然后将项目中的四个配置文件删除
1.4 修改启动类
我们需要在启动类中添加eureka客户端和config服务端的注解,具体如下:
@SpringBootApplication
@EnableEurekaClient
@EnableConfigServer
public class ConfigServerStart {
public static void main(String[] args) {
SpringApplication.run(ConfigServerStart.class, args);
}
}
1.5 访问测试
启动服务,访问测试
http://localhost:9050/config-client/test