重点:本项目资源地址请点击:https://download.csdn.net/download/hp_yangpeng/11064773(ps:最好先看文档,跟着做完,然后再下载demo)
1、相关环境
2、项目创建
说明:此处我们会创建一个父项目,其他子项目(生产者、消费者、注册中心)均以module的形式在展示在项目目录中,首先比较符合当前开发规范,其次也比较方便;
1. 创建父项目:springbootdemo,具体截图如下:
注意:此处可以选择一个web依赖,一个Eureka Server依赖
在Idea里我将无关的文件全部隐藏了,另外将test给删除了,具体文件目录如下:
pom.xml 做个修改,具体pom.xml配置如下::
说明:在创建当前项目的时候选择了springcloud的eureka,但是创建结束之后我发现springcloud的版本号为
这个我没有细查,所以就直接用下面的配置文件吧,保证是没有问题的;
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
org.springframework.boot
spring-boot-maven-plugin
org.springframework.cloud
spring-cloud-dependencies
Finchley.SR1
pom
import
父项目创建完毕;
2.创建子项目——公共entity项目 springbootdemo-entity
项目结构如下:entity子项目中主要有两个entity,包名为:com.example.springbootdemoentity.entity
;
entity中的字段自己随便写,我的内容如下:
public class Consumer {
private String name;
private int age;
private String add;
private String email;
public Consumer() {
this.name = "name";
this.age = 12;
this.add = "北京市历史互通";
this.email = "6666.qq.com";
}
@Override
public String toString() {
return "Consumer{" +
"name='" + name + '\'' +
", age=" + age +
", add='" + add + '\'' +
", email='" + email + '\'' +
'}';
}
}
/**
* @author YangPeng
* @Title: Product
* @ProjectName springboot
* @Description: TODO
* @date 2019/3/25-16:23
*/
public class Product {
private String name;
private int age;
private String add;
private String email;
public Product() {
this.name = "name";
this.age = 12;
this.add = "北京市历史互通";
this.email = "6666.qq.com";
}
@Override
public String toString() {
return "Product{" +
"name='" + name + '\'' +
", age=" + age +
", add='" + add + '\'' +
", email='" + email + '\'' +
'}';
}
}
3.创建子项目——注册中心 springbootdemo-eureka
项目目录如下:
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
org.springframework.cloud
spring-cloud-dependencies
Finchley.SR1
pom
import
server:
port: 5060
servlet:
context-path: /eureka
spring:
application:
name: eureka-server
eureka:
client:
#是否启用湖区注册服务信息,因为这是一个单节点的EurekaServer,不需要同步其他的EurekaServer节点的数据,所以设置为false;
fetch-registry: false
#表示是否向eureka注册服务,即在自己的eureka中注册自己,默认为true,此处应该设置为false;
register-with-eureka: true
service-url:
defaultZone: http://localhost:5060/eureka/eureka
instance:
hostname: localhost
server:
#设为false,关闭自我保护,即Eureka server在云心光器件会去统计心跳失败比例在15分钟之内是否低于85%,如果低于85%,EurekaServer
#会将这些事例保护起来,让这些事例不会过期,但是在保护器内如果刚哈这个服务提供者非正常下线了,此时服务消费者会拿到一个无效的服务
#实例,此时调用会失败,对于这个问题需要服务消费者端有一些容错机制,如重试、断路器等;
enable-self-preservation: false
#扫描失效服务的间隔时间(单位是毫秒,摩恩是60*1000),即60s
eviction-interval-timer-in-ms: 10000
修改启动文件,添加@EnableEurekaServer注解,表示这个是一个Eureka注册中心
启动eureka项目,并访问:http://localhost:5060/eureka ,出现如下页面表示Eureka项目创建成功!
4.创建子项目——生产者 springbootdemo-product
说明:此处删除无用的test文件夹,并将application.properties改为application.yml;
pom.xml文件修改:
修改该工程的父依赖:
原来为:
org.springframework.boot
spring-boot-starter-parent
2.1.3.RELEASE
修改为:
com.example
springbootdemo
0.0.1-SNAPSHOT
具体配置如下:
4.0.0
com.example
springbootdemo
0.0.1-SNAPSHOT
com.example
springbootdemo-product
0.0.1-SNAPSHOT
springbootdemo-product
Demo project for Spring Boot
1.8
com.example
springbootdemo-entity
0.0.1-SNAPSHOT
compile
org.springframework.cloud
spring-cloud-starter-openfeign
org.springframework.boot
spring-boot-maven-plugin
spring:
application:
name: product-server
server:
port: 7002
servlet:
context-path: /product
eureka:
client:
service-url:
#defaultZone 这个是不会提示的,此处需要自己写
#实际上属性应该是service-url,这个属性是个map(key-value)格式;当key是defaultZone的时候才能被解析;所以这里没有提示,
#但是自己还需要写一个defaultZone;
defaultZone: http://localhost:5060/eureka/eureka
@SpringBootApplication
//@EnableEurekaClient 和 @EnableDiscoveryClient 都是让eureka发现该服务并注册到eureka上的注解
//相同点:都能让注册中心Eureka发现,并将该服务注册到注册中心上;
//不同点:@EnableEurekaClient只适用于Eureka作为注册中心,而@EnableDiscoveryClient可以是其他注册中心;
@EnableEurekaClient
//表示开启Fegin客户端
@EnableFeignClients
public class SpringbootProductApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootProductApplication.class, args);
}
}
5.创建子项目——消费者 springbootdemo-cousumer
com.example
springbootdemo
0.0.1-SNAPSHOT
com.example
springbootdemo-entity
0.0.1-SNAPSHOT
compile
org.springframework.cloud
spring-cloud-starter-openfeign
org.springframework.boot
spring-boot-maven-plugin
server:
servlet:
# 定义项目的访问访问路径
context-path: /consumer
#定义端口号
port: 7001
spring:
# 下面是我整合redis使用的配置,你们此处不需要
# redis:
# cluster:
# expire-seconds: 120
# command-timeout: 5000
# nodes:
# namenode22:6379,datanode23:6379,datanode24:6379,datanode25:6379,datanode26:6379,datanode27:6379
application:
#定义应用名称,即服务名称
name: consumer-server
eureka:
client:
service-url:
defaultZone: http://localhost:5060/eureka/eureka
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class SpringbootdemoConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootdemoConsumerApplication.class, args);
}
}
- 整合fegin步骤:
/**
* @author YangPeng
* @Title: ProductService
* @ProjectName springbootdemo
* @Description: TODO
* @date 2019/3/27-11:23
*/
//name 为product项目中application.yml配置文件中的application.name;
//path 为product项目中application.yml配置文件中的context.path;
@FeignClient(name = "product-server",path ="/product" )
//@Componet注解最好加上,不加idea会显示有错误,但是不影响系统运行;
@Component
public interface ProductService {
@RequestMapping(value = "getProduct")
String getProduct();
}
@RestController
public class ConsumerController {
@Autowired
private ProductService productService;
@RequestMapping(value = "getConsumer")
public String getConsumer(){
String str = productService.getProduct();
return str;
}
}
重点中的重点:鉴于好多朋友的CSDN账号没有C币,所以我把项目传到github上了,哈哈哈哈,朋友们可以直接去github clone下来,地址如下:https://github.com/yanpgeng/springbootdemo 克隆下来之后直接使用idea工具open这个项目,然后将项目add as maven project即可
下一篇:springboot整合redis集群详解