第一步,创建一个普通的springboot项目
以下方法都可以快速创建一个boot项目:
1. 浏览器访问http://start.spring.io/,填写信息,下载zip包,加压到你的ide的工作空间直接使用。
2. 使用idea自动生成boot项目
3. 使用eclipse创建boot项目
需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码 一零三八七七四六二六
第二步,在pom.xml中添加依赖(以下是我的完整依赖)
第三步,修改配置文件application-dev.properties将application.properties文件名称修改为application-dev.properties。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
#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类,配置完成!