• Spring Cloud AWS配置中心使用


    前提

    假设,已经拥有了AWS账户,并且这个账户已经开通了AWS Parameter Store和AWS Secrets Manager这两个服务;假设已经存在一个SpringBoot项目。假设开发运行的IDEA已经配置好了,AWS相关权限认证,即开发者的aws_access_key_id和aws_secret_access_key在本地已经配置好了。

    目标

    在SpringBoot项目中使用AWS的配置中心。这两个AWS配置中心,要求的应用程序必须能够访问互联网访问,才能够使用;不过,也可用通过endpoint在私有vpc通过内网访问到。

    步骤

    pom.xml

    <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-starter-awsartifactId>
    dependency>
    <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-starter-aws-parameter-store-configartifactId>
    dependency>
    
    <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-starter-aws-secrets-manager-configartifactId>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    配置Spring Cloud AWS需要的相关依赖。

    bootstrap.yml

    cloud:
      aws:
        region:
          static: cn-north-1
          auto: false
        stack:
          auto: false
        instance:
          data:
            enabled: false
    aws:
      paramstore:
        enabled: true
        defaultContext: application
        region: cn-north-1
        prefix: /config
        profileSeparator: '_'
      secretsmanager:
        enabled: true
        defaultContext: application
        region: cn-north-1
        prefix: /secret
        profileSeparator: '_'
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    这里禁用基于EC2元数据的自动区域发现功能,因为我们就一个区域,故将cloud.aws.region.auto设置为false。还禁用了stack和instance。
    defaultContext配置paramstore和secretsmanager默认读取的配置;prefix设置了配置中心需要使用的前缀;profileSeparator设置了Spring Boot应用名与Spring Boot Profile使用下划线进行分割。

    AWS Paramstore

    AWS Parameter Store
    application就是默认配置,api_test就是api这个应用在test这个profile下面需要读取的配置。AWS Secrets Manager也是类似,这里就不再展示了。

    Spring中使用

    在Spring中就可以正常使用value注解对配置进行读取了,类似如下代码:

        @Value("${omain}")
        private String omain;
    
    • 1
    • 2

    总结

    这就是Spring Cloud AWS配置中心的使用。注意这里idea需要使用到AWS Toolkit插件,对本地开发环境进行AWS认证Key管理。

    参考:

  • 相关阅读:
    Redis 7 第九讲 微服务集成Redis 应用篇
    Android-Intent与Bundle在传值上的区别
    【问题总结】 记 一次dockerFile构建报错
    太刺激了,这份阿里P8大牛出品的架构宝典,助你打开架构师大门
    Python基础List列表定义与函数
    10以内字符与数字的转化(与ASCII码无关)
    第三章 :Spring Boot开发RESTful API
    javaweb基础:过滤器Filter
    Spark面试题(二)
    【JS高级】ES5标准规范之创建子对象以及替换this_10
  • 原文地址:https://blog.csdn.net/fxtxz2/article/details/127862757