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

(새 문서: ==개요== ;Spring Cloud Config Server ;스프링 클라우드 컨피그 서버 ==같이 보기== * Spring Cloud Config ==참고== * https://cloud.spring.io/spring-cloud-config/...)
 
2번째 줄: 2번째 줄:
;Spring Cloud Config Server
;Spring Cloud Config Server
;스프링 클라우드 컨피그 서버
;스프링 클라우드 컨피그 서버
<source lang='java'>
@SpringBootApplication
@EnableConfigServer
public class ConfigServer {
  public static void main(String[] args) {
    SpringApplication.run(ConfigServer.class, args);
  }
}
</source>


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

2018년 9월 28일 (금) 10:33 판

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 }}