资源简介

这是一个微服务是实际操作的案例,一套完整的微服务demo,欢迎同学们下载学习。

资源截图

代码片段和文件信息

package com.spy;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
@EnableZuulProxy
@EnableHystrix
public class MangerCusApplication {

public static void main(String[] args) {
SpringApplication.run(MangerCusApplication.class args);
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-28 12:41  shipy\
     目录           0  2018-12-28 12:26  shipy\.git\
     文件          47  2018-12-28 10:39  shipy\.git\COMMIT_EDITMSG
     文件         358  2018-12-28 10:40  shipy\.git\config
     文件          73  2018-12-01 16:26  shipy\.git\description
     文件          21  2018-12-02 00:21  shipy\.git\HEAD
     目录           0  2018-12-28 12:26  shipy\.git\hooks\
     文件         478  2018-12-01 16:26  shipy\.git\hooks\applypatch-msg.sample
     文件         896  2018-12-01 16:26  shipy\.git\hooks\commit-msg.sample
     文件        3327  2018-12-01 16:26  shipy\.git\hooks\fsmonitor-watchman.sample
     文件         189  2018-12-01 16:26  shipy\.git\hooks\post-update.sample
     文件         424  2018-12-01 16:26  shipy\.git\hooks\pre-applypatch.sample
     文件        1638  2018-12-01 16:26  shipy\.git\hooks\pre-commit.sample
     文件        1348  2018-12-01 16:26  shipy\.git\hooks\pre-push.sample
     文件        4898  2018-12-01 16:26  shipy\.git\hooks\pre-rebase.sample
     文件         544  2018-12-01 16:26  shipy\.git\hooks\pre-receive.sample
     文件        1492  2018-12-01 16:26  shipy\.git\hooks\prepare-commit-msg.sample
     文件        3610  2018-12-01 16:26  shipy\.git\hooks\update.sample
     文件       38194  2018-12-28 12:24  shipy\.git\index
     目录           0  2018-12-28 12:26  shipy\.git\info\
     文件         240  2018-12-01 16:26  shipy\.git\info\exclude
     目录           0  2018-12-28 12:26  shipy\.git\logs\
     文件        1516  2018-12-28 10:39  shipy\.git\logs\HEAD
     目录           0  2018-12-28 12:26  shipy\.git\logs\refs\
     目录           0  2018-12-28 12:26  shipy\.git\logs\refs\heads\
     文件         337  2018-12-28 10:39  shipy\.git\logs\refs\heads\demo
     文件         178  2018-12-01 16:26  shipy\.git\logs\refs\heads\master
     目录           0  2018-12-28 12:26  shipy\.git\logs\refs\remotes\
     目录           0  2018-12-28 12:26  shipy\.git\logs\refs\remotes\origin\
     文件         143  2018-12-28 10:40  shipy\.git\logs\refs\remotes\origin\demo
     文件         178  2018-12-01 16:26  shipy\.git\logs\refs\remotes\origin\HEAD
............此处省略739个文件信息

评论

共有 条评论