Last active
February 22, 2020 02:09
-
-
Save thinkmicroservices/191298e0316d177beed0c7113b3d534b to your computer and use it in GitHub Desktop.
Configuration Service java
This file contains hidden or 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 com.thinkmicroservices.ri.spring.config; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.config.server.EnableConfigServer; | |
@EnableConfigServer | |
@SpringBootApplication | |
public class ConfigurationService { | |
public static void main(String[] args) { | |
SpringApplication.run(ConfigurationService.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment