(八)整合spring cloud云服务架构 - commonservice-eureka 项目构建过程

我们针对于HongHu cloud的eureka项目做以下构建,整个构建的过程很简单,我会将每一步都构建过程记录下来,希望可以帮助到大家:

  1. 创建一个名为particle-common-eureka的maven项目,继承particle-commonservice,具体的pom.xml配置文件如下:
1.   
2.   
4.   4.0.0 

6.    
7.   com.ml.honghu 
8.   particle-commonservice 
9.   0.0.1-SNAPSHOT 
10.    

12.   particle-commonservice-eureka 
13.   jar 

15.   particle-commonservice-eureka 
16.   particle-commonservice project for Spring Boot 

18.    
19.    
20.   org.springframework.cloud 
21.   spring-cloud-starter-eureka-server 
22.    
23.    
24.   org.springframework.boot 
25.   spring-boot-starter-security 
26.    
27.    
28.   org.springframework.boot 
29.   spring-boot-devtools 
30.    

32.    
33.   org.springframework.boot 
34.   spring-boot-starter-test 
35.   test 
36.    

38.    

40.    
41.    
42.    
43.   org.springframework.boot 
44.   spring-boot-maven-plugin 
45.    
46.    
47.   1 
48.    
49.   repackage 
50.    
51.    
52.    
53.   2 
54.    
55.   build-info 
56.    
57.    
58.    
59.    
60.   true 
61.    

63.    
64.    
65.    
66.  
  1. 在启动类入口引用eureka的相关配置,代码如下:
1.  package com.ml.honghu; 

3.  import org.springframework.boot.SpringApplication; 
4.  import org.springframework.boot.autoconfigure.SpringBootApplication; 
5.  import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; 

7.  @EnableEurekaServer 
8.  @SpringBootApplication 
9.  public class ServiceApplication { 

11.   public static void main(String[] args) { 
12.   SpringApplication.run(ServiceApplication.class, args); 
13.   } 
14.  }
  1. 配置application.yml文件
1.  # server (eureka 默认端口为:8761) 
2.  server: 
3.   port: 8761 

5.  # spring 
6.  spring: 
7.   application: 
8.   name: particle-commonservice-erueka 

10.  # eureka 
11.  eureka: 
12.   client: 
13.   # 是否注册到eureka 
14.   register-with-eureka: true 
15.   # 是否从eureka获取注册信息 
16.   fetch-registry: false 
17.   availability-zones: 
18.   honghu: honghuZone 
19.   service-url: 
20.   honghuZone: http://honghu:123456@localhost:8761/eureka/ 
21.   defaultZone: http://honghu:123456@localhost:8761/eureka/ 
22.   instance: 
23.   prefer-ip-address: true 
24.   hostname: localhost 
25.   metadataMap: 
26.   zone: honghuZone 
27.   user: ${security.user.name} 
28.   password: {security.user.password} 

30.   # 指定环境 
31.   environment: dev 
32.   #指定数据中心 
33.   datacenter: honghu 
34.   # 关闭自我保护模式 
35.   server: 
36.   enable-self-preservation: false 
37.   #设置清理无效节点的时间间隔,默认60000,即是60s 
38.   eviction-interval-timer-in-ms: 60000 

40.  # 服务认证 
41.  security: 
42.   basic: 
43.   enabled: true 
44.   user: 
45.   name: honghu 
46.   password: 123456 

48.  management: 
49.   security: 
50.   enabled: false
  1. 增加项目的log机制和打包运行机制(后面我们会详细编写针对于Linux Centos下的打包部署机制)(企业架构源码可以加求球:叁五三陆二肆柒二伍玖)​
  2. 自此整个项目部署完成,通过手动方式进行Run As --> Spring Boot App,运行结果如下:

控制台运行结果:

(八)整合spring cloud云服务架构 - commonservice-eureka 项目构建过程_第1张图片

访问控制台并登陆:

(八)整合spring cloud云服务架构 - commonservice-eureka 项目构建过程_第2张图片

控制台运行效果:

(八)整合spring cloud云服务架构 - commonservice-eureka 项目构建过程_第3张图片

(八)整合spring cloud云服务架构 - commonservice-eureka 项目构建过程_第4张图片

从现在开始,我这边会将近期研发的spring cloud微服务云架构的搭建过程和精髓记录下来,帮助更多有兴趣研发spring cloud框架的朋友,大家来一起探讨spring cloud架构的搭建过程及如何运用于企业项目。

你可能感兴趣的:(spring,java,小程序)