"Spring Cloud Config Server"의 두 판 사이의 차이

(새 문서: ==개요== ;Spring Cloud Config Server ;스프링 클라우드 컨피그 서버 ==같이 보기== * Spring Cloud Config ==참고== * https://cloud.spring.io/spring-cloud-config/...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
2번째 줄: 2번째 줄:
;Spring Cloud Config Server
;Spring Cloud Config Server
;스프링 클라우드 컨피그 서버
;스프링 클라우드 컨피그 서버
<syntaxhighlight lang='java'>
@SpringBootApplication
@EnableConfigServer
public class ConfigServer {
  public static void main(String[] args) {
    SpringApplication.run(ConfigServer.class, args);
  }
}
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:50 기준 최신판

1 개요[ | ]

Spring Cloud Config Server
스프링 클라우드 컨피그 서버
@SpringBootApplication
@EnableConfigServer
public class ConfigServer {
  public static void main(String[] args) {
    SpringApplication.run(ConfigServer.class, args);
  }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}