org.cloudfun.msaconfig.funconfigserver.FunConfigServerApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fun-config-server Show documentation
Show all versions of fun-config-server Show documentation
build config-server standlone
The newest version!
package org.cloudfun.msaconfig.funconfigserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
//@EnableConfigServer
public class FunConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(FunConfigServerApplication.class, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy