41 lines
1.5 KiB
Java
41 lines
1.5 KiB
Java
|
|
package com.zyplayer.doc.manage;
|
|||
|
|
|
|||
|
|
import java.net.InetAddress;
|
|||
|
|
|
|||
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|||
|
|
import org.slf4j.Logger;
|
|||
|
|
import org.slf4j.LoggerFactory;
|
|||
|
|
import org.springframework.boot.SpringApplication;
|
|||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||
|
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
|||
|
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
|||
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|||
|
|
import org.springframework.core.env.Environment;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 程序启动器
|
|||
|
|
*/
|
|||
|
|
@SpringBootApplication
|
|||
|
|
@MapperScan("com.zyplayer.doc.manage.repository")
|
|||
|
|
public class Application extends SpringBootServletInitializer {
|
|||
|
|
|
|||
|
|
private static Logger logger = LoggerFactory.getLogger(Application.class);
|
|||
|
|
|
|||
|
|
@Override
|
|||
|
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
|||
|
|
return application.sources(Application.class);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static void main(String[] args) throws Exception {
|
|||
|
|
ConfigurableApplicationContext application = SpringApplication.run(Application.class, args);
|
|||
|
|
Environment env = application.getEnvironment();
|
|||
|
|
logger.info("\n----------------------------------------------------------\n\t" +
|
|||
|
|
"\t\t地址列表\n\t"+
|
|||
|
|
"文档地址:http://{}:{}/document.html\n"+
|
|||
|
|
"----------------------------------------------------------",
|
|||
|
|
InetAddress.getLocalHost().getHostAddress(), env.getProperty("server.port")
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|