Skip to content

Instantly share code, notes, and snippets.

@roberGzt
Created July 19, 2019 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roberGzt/4119e044e285d98db1837817d4605286 to your computer and use it in GitHub Desktop.
Save roberGzt/4119e044e285d98db1837817d4605286 to your computer and use it in GitHub Desktop.
configuración java de config server
package com.example.springCloudServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class springCloudServerApp {
public static void main(String[] args) {
SpringApplication.run(Lab3ServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment