博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java B2B2C多用户商城 springcloud架构 --Eureka服务器搭建及配置
阅读量:6101 次
发布时间:2019-06-20

本文共 5389 字,大约阅读时间需要 17 分钟。

hot3.png

第一步,创建一个普通的springboot项目

以下方法都可以快速创建一个boot项目: 

1. 浏览器访问http://start.spring.io/,填写信息,下载zip包,加压到你的ide的工作空间直接使用。 

2. 使用idea自动生成boot项目 

3. 使用eclipse创建boot项目 

需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码 一零三八七七四六二六

第二步,在pom.xml中添加依赖(以下是我的完整依赖)

   
4.0.0
   
com.eureka.server
   
eureka-server-001
   
0.0.1
   
eureka-server-001 Maven Webapp
   
http://maven.apache.org
   
       
org.springframework.boot
       
spring-boot-starter-parent
       
1.5.4.RELEASE
       
   
   
       
UTF-8
       
UTF-8
       
1.8
       
Dalston.SR4
   
   
       
           
junit
           
junit
           
test
       
       
       
           
org.springframework.cloud
           
spring-cloud-starter-eureka-server
       
       
           
org.springframework.boot
           
spring-boot-starter-test
           
test
       
       
           
org.springframework.cloud
           
spring-cloud-netflix-core
       
       
           
com.google.guava
           
guava
       
       
       
           
org.springframework
           
springloaded
       
       
       
           
org.springframework.boot
           
spring-boot-devtools
           
true
       
       
       
           
de.codecentric
           
spring-boot-admin-starter-client
           
1.3.2
       
       
           
org.springframework.boot
           
spring-boot-starter-actuator
       
       
           
org.jolokia
           
jolokia-core
       
       
       
           
org.springframework.boot
           
spring-boot-starter-security
       
   
   
       
           
               
org.springframework.cloud
               
spring-cloud-dependencies
               
${spring-cloud.version}
               
pom
               
import
           
       
   
   
       
           
               
org.springframework.boot
               
spring-boot-maven-plugin
           
       
   

第三步,修改配置文件application-dev.properties将application.properties文件名称修改为application-dev.properties。
 

#appname默认spring.application.name=Eureka-H.A.#注册端口号server.port=8761#-----------------------编写者相关信息----------------------#-----------------------编写者相关信息----------------------info.owner=LTYinfo.version=@project.version@info.app.name=@project.name@info.app.version=@project.version@info.app.description=@project.description@info.app.spring-boot-version=@project.parent.version@#安全认证security.basic.enabled=falsesecurity.user.name=adminsecurity.user.password=123456spring.boot.admin.url=http://localhost:8080#------------------------服务与发现相关信息---------------------#------------------------服务与发现相关信息---------------------#不使用主机名来定义注册中心的地址,而使用IP地址的形式,如果设置了属性,则使用该属性配置的IP,否则自动获取除环路IP外的第一个IP地址# 注册时显示ipeureka.instance.prefer-ip-address=true#IP地址#eureka.instance.ip-address=localhost#是否注册为服务eureka.client.register-with-eureka=false#是否检索服务eureka.client.fetch-registry=false#设置当前实例的主机名称eureka.instance.hostname=localhost#定义服务续约任务(心跳)的调用间隔,单位:秒eureka.instance.lease-renewal-interval-in-seconds=30#定义服务失效的时间,单位:秒eureka.instance.lease-expiration-duration-in-seconds=90#状态页面的URL,相对路径,默认使用 HTTP 访问,如果需要使用 HTTPS则需要使用绝对路径配置eureka.instance.status-page-url-path=/info#健康检查页面的URL,相对路径,默认使用 HTTP 访问,如果需要使用 HTTPS则需要使用绝对路径配置eureka.instance.health-check-url-path=/health#健康检查页面的URL,绝对路径eureka.instance.health-check-url=/#关闭注册中心的保护机制,Eureka 会统计15分钟之内心跳失败的比例低于85%将会触发保护机制,不剔除服务提供者,如果关闭服务注册中心将不可用的实例正确剔除#关闭自我保护(生产时打开该选项)eureka.server.enable-self-preservation=true#扫描失效服务的间隔时间(缺省为60*1000ms)eureka.server.eviction-interval-timer-in-ms=5000#eureka默认空间的地址eureka.client.service-url.defaultZone=http://localhost:8761/eureka/

第四步,添加application.yml
 

spring:   profiles:     active: dev

第五步,修改Application类

添加注解 

@EnableEurekaServer 该注解表明应用为eureka服务,有可以联合多个服务作为集群,对外提供服务注册以及发现功能 

@SpringBootApplication(创建完的boot项目自带的启动注解,会加载一些配置)

修改main() 方法

 

public static void main(String[] args) {        new SpringApplicationBuilder(EurekaServerApplication.class).web(true).run(args);    }

启动Application类,配置完成!

转载于:https://my.oschina.net/u/3873725/blog/3025244

你可能感兴趣的文章
学习笔记之Data Visualization
查看>>
Leetcode 3. Longest Substring Without Repeating Characters
查看>>
【FJOI2015】金币换位问题
查看>>
数学之美系列二十 -- 自然语言处理的教父 马库斯
查看>>
Android实现自定义位置无标题Dialog
查看>>
面试总结
查看>>
Chrome浏览器播放HTML5音频没声音的解决方案
查看>>
easyui datagrid 行编辑功能
查看>>
类,对象与实例变量
查看>>
HDU 2818 (矢量并查集)
查看>>
【转】php字符串加密解密
查看>>
22. linux 常用命令
查看>>
ASP.Net 使用GridView模板删除一行的用法
查看>>
(十六)字段表集合
查看>>
JPGraph
查看>>
实验二 Java面向对象程序设计
查看>>
------__________________________9余数定理-__________ 1163______________
查看>>
webapp返回上一页 处理
查看>>
新安装的WAMP中phpmyadmin的密码问题
查看>>
20172303 2017-2018-2 《程序设计与数据结构》第5周学习总结
查看>>