Honghu Cloud distributed micro-service clouds system-eureka
We build the following for the Eureka project of Honghu Cloud, the whole building process is simple, I will record every step of the construction process, I hope to help everyone.
- Create a Maven project named Common-eureka, which inherits the Commonservice, and the specific pom.xml configuration file is as follows:
<?xml version= "1.0" encoding= "UTF-8"? ><project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http ://www.w3.org/2001/XMLSchema-instance "xsi:schemalocation=" http://maven.apache.org/POM/4.0.0/http Maven.apache.org/xsd/maven-4.0.0.xsd "> <modelVersion>4.0.0</modelVersion> <parent> <g Roupid>com.ml.honghu</groupid> <artifactId>commonservice</artifactId> <version>0. 0.1-snapshot</version> </parent> <artifactId>commonservice-eureka</artifactId> <packag Ing>jar</packaging> <name>commonservice-eureka</name> <description>commonservice Project for Spring boot</description> <dependencies> <dependency> <groupid>or G.springframework.cloud</groupid> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <ARTIFACTID>SPRING-BOOT-STARTER-SECURITY&L t;/artifactid> </dependency> <dependency> <groupid>org.springframework.boot& lt;/groupid> <artifactId>spring-boot-devtools</artifactId> </dependency> < ;d ependency> <groupId>org.springframework.boot</groupId> <artifactid>spring-boo t-starter-test</artifactid> <scope>test</scope> </dependency> </dependenci es> <build> <plugins> <plugin> <groupid>org.springframework .boot</groupid> <artifactId>spring-boot-maven-plugin</artifactId> <exec utions> <execution> <id>1</id> <g Oals> <goal>repackage</goal> </goals> </execution> <execution> <id>2</id> <goals> <goal>build-info</goal> </goals> </execution> </executions> <configuration> <execu table>true</executable> </configuration> </plugin> </plugins> </build></project>
2. In the Boot class entry reference Eureka configuration, the code is as follows:
package com.ml.honghu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @EnableEurekaServer@SpringBootApplication public class ServiceApplication{ public static void main(String[] args) { SpringApplication.run(ServiceApplication.class, args);
3. Configuring the Application.yml File
# server (Eureka default port is: 8761) server:port:8761 # Spring Spring:application:name:commonservice-eruek a# Eureka Eureka:client: # Whether to register to Eureka Register-with-eureka:true # whether to get registration information from Eureka Fetch-registry: False Availability-zones:honghu:honghuzone service-url:honghuzone:http://honghu:[email protected ]:8761/eureka/defaultzone:http://honghu:[email protected]:8761/eureka/instance:prefer-ip-address:tru E hostname:localhost metadataMap:zone:honghuZone User: ${security.user.name} password: {secur Ity.user.password} # Specify Environment Environment:dev #指定数据中心 Datacenter:honghu # Turn off self-protection mode Server:enable-self-preserv Ation:false #设置清理无效节点的时间间隔, default 60000, which is 60s eviction-interval-timer-in-ms:60000 # service authentication Security:basic:ena Bled:true User:name:honghu password:123456management:security:enabled:false
- Add the log mechanism of the project and the package run mechanism (we will write the details for Linux
Package deployment mechanism under CentOS)
- As of this entire project deployment, the run as-to-Spring Boot App is done manually, and the results are as follows: Console Run results:
To access the console and log in:
Console Run Effect:
At the outset, I will be documenting the process and essence of the recent development of the spring cloud micro-service cloud architecture to help more friends who are interested in developing the Spring cloud framework to explore the process of building the spring cloud architecture and how to apply it to enterprise projects.
Willing to understand the framework of technology or source of friends directly seeking exchange sharing technology 1791743380
Spring Cloud--honghu Cloud distributed micro-service clouds system-eureka (vi)