博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java B2B2C Springboot电子商务平台源码 -eureka集群整合config配置中心
阅读量:5734 次
发布时间:2019-06-18

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

eureka集群-整合config配置中心 需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码:壹零叁八柒柒肆六二六 加入依赖

org.springframework.boot
spring-boot-starter-actuator
org.springframework.boot
spring-boot-starter-security
org.springframework.cloud
spring-cloud-config-server
org.springframework.cloud
spring-cloud-starter-eureka
application.ymlserver: port: 8881spring: application: name: tms-config cloud: config: server: git: uri: 仓库地址 searchPaths: 目录 username: 用户名 password: 密码 label: mastereureka: instance: prefer-ip-address: true lease-renewal-interval-in-seconds: 30 lease-expiration-duration-in-seconds: 90 metadata-map: name: tms-config-metadata-map-name client: serviceUrl: defaultZone: http://admin:admin@192.168.1.109:8761/eureka/, http://admin:admin@192.168.1.109:8762/eureka/ # 抓取服务列表时间间隔 registry-fetch-interval-seconds: 30endpoints: sensitive: false shutdown: enabled: true sensitive: truesecurity: user: name: admin password: admin role: SUPERUSERmanagement: context-path: /tms-config security: roles: SUPERUSER #角色# 日志logging: file: logs/logger.log level: com.netflix: DEBUG org.springframework.web: DEBUG org.springframework.security: INFO复制代码

启动项

@SpringBootApplication@EnableConfigServer@EnableEurekaClientpublic class TmsConfigApplication {   public static void main(String[] args) {      SpringApplication.run(TmsConfigApplication.class, args);   }}复制代码

调用者配置 ,注意这里要用此配置文件名 bootstrap.yml

spring:  application:    name: tms-client  cloud:    config:      label: master      profile: dev      username: admin      password: admin      discovery:        enabled: true        service-id: tms-configeureka:  client:    serviceUrl:      defaultZone: http://admin:admin@192.168.1.109:8761/eureka/, http://admin:admin@192.168.1.109:8762/eureka/复制代码

读取配置文件内容

@RestControllerpublic class TestController {    @Value("${apuserName}")    private String apuserName;    @GetMapping(value = "/hello")    public String hello() {        return apuserName;    }}复制代码

转载于:https://juejin.im/post/5c22dabc6fb9a049e30822bd

你可能感兴趣的文章
[MOSEK] Stupid things when using mosek
查看>>
程序实例---栈的顺序实现和链式实现
查看>>
服务的使用
查看>>
Oracle 用户与模式
查看>>
网站开发流程以及HTML5简介(八)
查看>>
MairDB 初始数据库与表 (二)
查看>>
RabbitMQ】三种Exchange模式——订阅、路由、通配符模式
查看>>
连接数据库——java
查看>>
拥在怀里
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
MDT 2013 从入门到精通之软件自动化部署设置
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>
桌面支持--outlook取消收件规则1
查看>>
nagios监控windows 改了NSclient++默认端口 注意事项
查看>>
干货 | JAVA代码引起的NATIVE野指针问题(上)
查看>>
POI getDataFormat() 格式对照
查看>>
Project build error: Non-resolvable import POM
查看>>
Python 中的进程、线程、协程、同步、异步、回调
查看>>