首页 > 其他分享 >sc-cs实例 20230108

sc-cs实例 20230108

时间:2023-01-18 10:24:03浏览次数:41  
标签:git spring springframework server cs sc 20230108 config cloud

 

一、config-server git

 

https://github.com/huanzi-qch/config-server/blob/master/myspringboot-dev.properties

 

 

 

二、configServer

 

  1、pom.xml
    <properties>
      <java.version>1.8</java.version>
      <spring-cloud.version>2021.0.5</spring-cloud.version>
    </properties>
    <dependencies>
      <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
      </dependency>
    </dependencies>
    <dependencyManagement>
      <dependencies>
       <dependency>
         <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-dependencies</artifactId>
          <version>${spring-cloud.version}</version>
          <type>pom</type>
          <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>


  2、application.properties
    spring.application.name=cs2063
    server.port=2063
    spring.cloud.config.server.git.uri=https://github.com/huanzi-qch/config-server.git
    spring.cloud.config.server.git.search-paths=config-server
    spring.cloud.config.label=master
    [email protected]
    spring.cloud.config.server.git.password=kkksss

 

 


  3、CserverApplication
  import org.springframework.boot.SpringApplication;
  import org.springframework.boot.autoconfigure.SpringBootApplication;
  import org.springframework.cloud.config.server.EnableConfigServer;

  @EnableConfigServer
  @SpringBootApplication
  public class CserverApplication {

    public static void main(String[] args) {
      SpringApplication.run(CserverApplication.class, args);
    }

  }

        

 

 

 

      4、http://localhost:2063/myspringboot-dev.properties/

 

 

 

 

 

 

 

 

 

 

参考

https://www.cnblogs.com/huanzi-qch/p/10149547.html

 

标签:git,spring,springframework,server,cs,sc,20230108,config,cloud
From: https://www.cnblogs.com/smallfa/p/17059290.html

相关文章

  • 学生获取阿里云ECS服务器并进行配置
    学生可以免费白嫖阿里云ECS服务器6个月:https://developer.aliyun.com/plan/student完成学生认证之后就可以免费使用1个月,后面可以再免费续费,认证通过后,同一用户可免费......
  • maven maven-assembly-plugin 开发自己的descriptorRef
    日常中大家应该使用过maven-assembly-plugin进行软件打包,maven-assembly-plugi内部已经提供了几个开箱即用的descriptorRef,主要是:bin,jar-with-dependencies,project......
  • JavaScript学习笔记—面向对象
    1.类的简介类是对象的模板,可以将对象中的属性和方法直接定义在类中,定义后,就可以直接通过类来创建对象。通过同一个类创建的对象,成为同类对象可以用instanceof来检查......
  • 技术实践|浅谈Elasticsearch跨集群搜索
    前言Elasticsearch(简称ES)是基于Lucene库的分布式架构搜索引擎。它支持水平横向扩展,但是集群节点不能无限增加。因为当集群的meta信息(节点、索引、集群状态)过多时,会使集群更......
  • CSS中知
    1CSS特性  1.3优先级     1.4权重叠加计算    2Chrome调试工具  2.1查错流程    3CSS盒子模型    3.1内容的宽度和高度......
  • ASCII表
    ASCII表Bin(二进制)Oct(八进制)Dec(十进制)Hex(十六进制)缩写/字符解释000000000000x00NUL(null)空字符000000010110x01SOH(startofheadlin......
  • fixed 定位设置 scroll 不滚动
    我的问题是把容器的高度设置成了100vw,和视口保持同样的高度,所以设置scroll也无法滚动。尽管我试了很多其他方法都不能让其滚动。把高度设置成100%就可以了,结构如下:<......
  • CS:APP--Chapter06 : memory hierarchy(part 2)
    CS:APP--Chapter06:memoryhierarchy(part2)标签(空格分隔):CS:APP目录CS:APP--Chapter06:memoryhierarchy(part2)2.Locality2.1localityofreferencetoprogra......
  • CSRF及SSRF漏洞案例
    CSRF漏洞:攻击者盗用了你的身份,以你的名义发送恶意请求,对服务器来说这个请求是完全合法的,但是却完成了攻击者所期望的一个操作,比如以你的名义发送邮件、发消息,盗取你的账号,......
  • CS:APP--Chapter06 : the memory hierarchy(part 1)
    CS:APP--Chapter06:memoryhierarchy(part1)标签(空格分隔):CS:APP目录CS:APP--Chapter06:memoryhierarchy(part1)prologue1.storagetechnologies1.1randomacce......