|  | @@ -2,10 +2,17 @@ package com.usky.iot;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  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.cloud.openfeign.EnableFeignClients;
 | 
	
		
			
				|  |  | +import org.springframework.context.ConfigurableApplicationContext;
 | 
	
		
			
				|  |  |  import org.springframework.context.annotation.ComponentScan;
 | 
	
		
			
				|  |  | +import org.springframework.core.env.Environment;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import java.net.InetAddress;
 | 
	
		
			
				|  |  | +import java.net.UnknownHostException;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
		
			
				|  |  |   * 系统模块
 | 
	
	
		
			
				|  | @@ -20,18 +27,19 @@ import org.springframework.context.annotation.ComponentScan;
 | 
	
		
			
				|  |  |  @SpringBootApplication
 | 
	
		
			
				|  |  |  public class RuoYiSystemApplication
 | 
	
		
			
				|  |  |  {
 | 
	
		
			
				|  |  | -    public static void main(String[] args)
 | 
	
		
			
				|  |  | -    {
 | 
	
		
			
				|  |  | -        SpringApplication.run(RuoYiSystemApplication.class, args);
 | 
	
		
			
				|  |  | -        System.out.println("(♥◠‿◠)ノ゙  永天测试模块启动成功   ლ(´ڡ`ლ)゙  \n" +
 | 
	
		
			
				|  |  | -                " .-------.       ____     __        \n" +
 | 
	
		
			
				|  |  | -                " |  _ _   \\      \\   \\   /  /    \n" +
 | 
	
		
			
				|  |  | -                " | ( ' )  |       \\  _. /  '       \n" +
 | 
	
		
			
				|  |  | -                " |(_ o _) /        _( )_ .'         \n" +
 | 
	
		
			
				|  |  | -                " | (_,_).' __  ___(_ o _)'          \n" +
 | 
	
		
			
				|  |  | -                " |  |\\ \\  |  ||   |(_,_)'         \n" +
 | 
	
		
			
				|  |  | -                " |  | \\ `'   /|   `-'  /           \n" +
 | 
	
		
			
				|  |  | -                " |  |  \\    /  \\      /           \n" +
 | 
	
		
			
				|  |  | -                " ''-'   `'-'    `-..-'              ");
 | 
	
		
			
				|  |  | +    private static final Logger LOGGER = LoggerFactory.getLogger(RuoYiSystemApplication.class);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public static void main(String[] args) throws UnknownHostException {
 | 
	
		
			
				|  |  | +        ConfigurableApplicationContext application = SpringApplication.run(RuoYiSystemApplication.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");
 | 
	
		
			
				|  |  | +        LOGGER.info("\n----------------------------------------------------------\n\t" +
 | 
	
		
			
				|  |  | +                "Application is running! Access URLs:\n\t" +
 | 
	
		
			
				|  |  | +                "Local: \t\thttp://localhost:" + port + (null==path?"":path) + "/\n\t" +
 | 
	
		
			
				|  |  | +                "External: \thttp://" + ip + ":" + port + (null==path?"":path) + "/\n\t" +
 | 
	
		
			
				|  |  | +                "Api: \t\thttp://" + ip + ":" + port + (null==path?"":path) + "/swagger-ui/index.html\n\t" +
 | 
	
		
			
				|  |  | +                "----------------------------------------------------------");
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  }
 |