Created
April 21, 2017 20:30
-
-
Save albertoaflores/d6b8e1a55251299ab60e7bfc25b133bb to your computer and use it in GitHub Desktop.
Sample Spring Cloud Config Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.cybertech.boot.sample; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.config.server.EnableConfigServer; | |
@SpringBootApplication | |
@EnableConfigServer | |
public class ConfigServerApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(ConfigServerApplication.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment