Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thinkmicroservices/191298e0316d177beed0c7113b3d534b to your computer and use it in GitHub Desktop.
Save thinkmicroservices/191298e0316d177beed0c7113b3d534b to your computer and use it in GitHub Desktop.
Configuration Service java
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