You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
673 B
23 lines
673 B
package com.tamguo.config;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.boot.CommandLineRunner;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.config.server.EnableConfigServer;
|
|
|
|
@SpringBootApplication
|
|
@EnableConfigServer
|
|
@Slf4j
|
|
public class ConfigServerApplication implements CommandLineRunner{
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ConfigServerApplication.class, args);
|
|
}
|
|
|
|
@Override
|
|
public void run(String... args) throws Exception {
|
|
log.info(">>>>>>>>>>>>>>> tamguo-config-server 启动完成<<<<<<<<<<<<<");
|
|
}
|
|
}
|