| | |
| | | package com.ycl; |
| | | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.context.ConfigurableApplicationContext; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.context.annotation.EnableAspectJAutoProxy; |
| | | import org.springframework.core.env.Environment; |
| | | import org.springframework.scheduling.annotation.EnableAsync; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.transaction.annotation.EnableTransactionManagement; |
| | | |
| | | import java.net.InetAddress; |
| | | import java.net.UnknownHostException; |
| | | |
| | | @Slf4j |
| | | @Configuration |
| | | @EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true) |
| | | @EnableAsync(proxyTargetClass = true) |
| | | @EnableScheduling |
| | | @EnableTransactionManagement(proxyTargetClass = true) |
| | | @SpringBootApplication |
| | | public class PlatformApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(PlatformApplication.class, args); |
| | | public static void main(String[] args) throws UnknownHostException { |
| | | ConfigurableApplicationContext application = SpringApplication.run(PlatformApplication.class, args); |
| | | |
| | | Environment env = application.getEnvironment(); |
| | | log.info("\n----------------------------------------------------------\n\t" + |
| | | "应用 '{}' 运行成功! 访问连接:\n\t" + |
| | | "Swagger文档: \t\thttp://{}:{}{}/doc.html\n\t" + |
| | | "数据库监控: \t\thttp://{}:{}/druid\n" + |
| | | "----------------------------------------------------------", |
| | | env.getProperty("spring.application.name"), |
| | | InetAddress.getLocalHost().getHostAddress(), |
| | | env.getProperty("server.port"), |
| | | env.getProperty("server.servlet.context-path"), |
| | | "127.0.0.1", |
| | | env.getProperty("server.port")); |
| | | } |
| | | |
| | | } |