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.
33 lines
1.4 KiB
33 lines
1.4 KiB
package com.example.zxweb;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|
import org.springframework.core.env.Environment;
|
|
|
|
import java.net.InetAddress;
|
|
import java.net.UnknownHostException;
|
|
|
|
@Slf4j
|
|
@SpringBootApplication
|
|
public class KafkaApplication {
|
|
|
|
public static void main(String[] args) throws UnknownHostException {
|
|
ConfigurableApplicationContext application = SpringApplication.run(KafkaApplication.class, args);
|
|
Environment env = application.getEnvironment();
|
|
String ip = InetAddress.getLocalHost().getHostAddress();
|
|
String port = env.getProperty("server.port");
|
|
String path = env.getProperty("server.servlet.context-path");
|
|
path=path==null?"":path;
|
|
log.info("---启动完成,当前使用端口:[" + port + "]---");
|
|
log.info("\n----------------------------------------------------------\n\t" +
|
|
"Application Jeecg-Boot is running! Access URLs:\n\t" +
|
|
"Local: \t\thttp://localhost:" + port + path + "/\n\t" +
|
|
"External: \thttp://" + ip + ":" + port + path + "/\n\t" +
|
|
"Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" +
|
|
"----------------------------------------------------------");
|
|
}
|
|
|
|
}
|