发布时间:2023-01-29 18:30
最近项目要用spring boot ,spring cloud 还有docker,在spring cloud这卡了很久,这篇博文做个笔记
建立好以后就是上面这个样子,因为我们只需要pom文件做为父pom,规范子模块,因此应当删除src目录
但是怎么修改这个pom文件呢,我们第一次创建这个可能不太清楚,以为springcloud是基于springboot的,应当特别注意他两版本的兼容性,笔者第一次建立的时候就因为这个版本兼容性报错,浪费了好长时间
为了解决这个问题,我们可以有更方便地方法,那就是用idea自带的spring initialzr工具建立一个springcloud工程,然后趴下它的pom文件
如下
题外话 注意一点
实际上刚入门的时候好多都是jar包的问题,找依赖的时候都可以用我这个方法
比如spring-cloud-starter-feign依赖已改为spring-cloud-starter-openfeign,用我这个方法很容易知道这一点
接着上面的步骤继续
下面就是他的pom文件
4.0.0
com.example
demo
0.0.1-SNAPSHOT
jar
demo
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
2.1.0.RELEASE
UTF-8
UTF-8
1.8
Greenwich.M3
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
然后我们再试着编写我们的pom文件
以为是父pom,规范子模块用的所以它的jar因改为pom
还有他的springboot版本为2.1.0.RELEASE
springcloud版本为Greenwich.M3
ok
下面就是我们最终的父pom
4.0.0
com.whale.demo
springCloud
1.0-SNAPSHOT
pom
org.springframework.boot
spring-boot-starter-parent
2.1.0.RELEASE
UTF-8
UTF-8
1.8
Greenwich.M3
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
这个是一定要写的,禁止获取快照组件,
否则后面我们需要依赖的cloud的包会报unkonwn错误
也就是上面我们为了获取父pom的操作
贴出pom
4.0.0
com.example
eurekaserver
0.0.1-SNAPSHOT
jar
eurekaserver
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
2.1.0.RELEASE
UTF-8
UTF-8
1.8
Greenwich.M3
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
因为我们新建spring moudel时,他没有自动继承我们的父pom,所以关键还是要修改它的 pom,让他继承我们的父pom然后删掉父pom中已定义的部分
修改后如下
4.0.0
com.example
eurekaserver
0.0.1-SNAPSHOT
jar
eurekaserver
Demo project for Spring Boot
com.whale.demo
springCloud
1.0-SNAPSHOT
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
相当于这个子pom文件只是引入了spring-cloud-starter-netflix-eureka-server的依赖
最后我们的父pom下应该多一个元素
eurekaserver
只需要一个注解@EnableEurekaServer,这个注解需要在springboot工程的启动application类上加
@SpringBootApplication
@EnableEurekaServer
public class EurekaserverApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaserverApplication.class, args);
}
}
eureka是一个高可用的组件,它没有后端缓存,每一个实例注册之后需要向注册中心发送心跳(因此可以在内存中完成),
在默认情况下erureka server也是一个eureka client ,必须要指定一个 server。
eureka server的配置文件appication.yml如下
我们还徐要改下配置文件的后缀为yml
server:
port: 8765
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
spring:
application:
name: eurka-server
通过eureka.client.registerWithEureka:false和fetchRegistry:false来表明自己是一个eureka server.
然后运行启动类EurekaserverApplication
eureka server 是有界面的,启动工程,打开浏览器访问:
http://localhost:8765 ,界面如下
No application available 没有服务被发现 ……_
因为没有注册服务当然不可能有服务被发现了。
当client向server注册时,它会提供一些元数据,例如主机和端口,URL,主页等。Eureka server 从每个client实例接收心跳消息。 如果心跳超时,则通常将该实例从注册server中删除。
创建过程同server类似,创建完pom.xml如下:
4.0.0
com.example
service-hi
0.0.1-SNAPSHOT
jar
service-hi
Demo project for Spring Boot
com.whale.demo
springCloud
1.0-SNAPSHOT
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
父pom引入module
eurekaserver
service-hi
通过注解@EnableEurekaClient 表明自己是一个eurekaclient.
@SpringBootApplication
@EnableEurekaClient
@RestController
public class ServiceHiApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceHiApplication.class, args);
}
@Value("${server.port}")
String port;
@RequestMapping("/hi")
public String home(@RequestParam(value = "name", defaultValue = "forezp") String name) {
return "hi " + name + " ,i am from port:" + port;
}
}
仅仅@EnableEurekaClient是不够的,还需要在配置文件中注明自己的服务注册中心的地址,application.yml配置文件如下:
server:
? port: 8768
spring:
? application:
? ? name: service-hi
eureka:
? client:
? ? serviceUrl:
? ? ? defaultZone: http://localhost:8765/eureka/
需要指明spring.application.name,这个很重要,这在以后的服务与服务之间相互调用一般都是根据这个name 。
启动工程,打开http://localhost:8765,即eureka server 的网址:
你会发现一个服务已经注册在服务中了,服务名为SERVICE-HI
这时打开http://localhost:8768/hi?name=whale,你会在浏览器上看到 :
参考资料 :https://blog.csdn.net/forezp/article/details/81040925
入门篇已经完了,推荐大家看
史上最简单的SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)(感觉方先生的Finchley版没有他旧版写的好,Finchley有很多笔误,)
史上最简单的SpringCloud教程 | 第三篇: 服务消费者(Feign)
史上最简单的SpringCloud教程 | 第四篇:断路器(Hystrix)
断路器:Hystrix 仪表盘好像只要低版本可以,没完成这个demo
讲的很好,
其次还有一个问题
可以看这个https://www.cnblogs.com/breath-taking/articles/7940364.html