package com.zkqy; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.EnableAspectJAutoProxy; import java.util.Arrays; /** * 启动程序 * * @author ruoyi */ @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class }) @EnableAspectJAutoProxy(exposeProxy = true) public class ZkqyApplication { public static void main(String[] args) { SpringApplication.run(ZkqyApplication.class, args); System.out.println("(♥◠‿◠)ノ゙ 中科擎云智能制造平台客户端后台启动成功 ლ(´ڡ`ლ)゙ \n"+ " CCCCCCCCCCCCCLLLLLLLLLLL IIIIIIIIIIEEEEEEEEEEEEEEEEEEEEEENNNNNNNN NNNNNNNNTTTTTTTTTTTTTTTTTTTTTTT\n" + " CCC::::::::::::CL:::::::::L I::::::::IE::::::::::::::::::::EN:::::::N N::::::NT:::::::::::::::::::::T\n" + " CC:::::::::::::::CL:::::::::L I::::::::IE::::::::::::::::::::EN::::::::N N::::::NT:::::::::::::::::::::T\n" + " C:::::CCCCCCCC::::CLL:::::::LL II::::::IIEE::::::EEEEEEEEE::::EN:::::::::N N::::::NT:::::TT:::::::TT:::::T\n" + " C:::::C CCCCCC L:::::L I::::I E:::::E EEEEEEN::::::::::N N::::::NTTTTTT T:::::T TTTTTT\n" + "C:::::C L:::::L I::::I E:::::E N:::::::::::N N::::::N T:::::T \n" + "C:::::C L:::::L I::::I E::::::EEEEEEEEEE N:::::::N::::N N::::::N T:::::T \n" + "C:::::C L:::::L I::::I E:::::::::::::::E N::::::N N::::N N::::::N T:::::T \n" + "C:::::C L:::::L I::::I E:::::::::::::::E N::::::N N::::N:::::::N T:::::T \n" + "C:::::C L:::::L I::::I E::::::EEEEEEEEEE N::::::N N:::::::::::N T:::::T \n" + "C:::::C L:::::L I::::I E:::::E N::::::N N::::::::::N T:::::T \n" + " C:::::C CCCCCC L:::::L LLLLLL I::::I E:::::E EEEEEEN::::::N N:::::::::N T:::::T \n" + " C:::::CCCCCCCC::::CLL:::::::LLLLLLLLL:::::LII::::::IIEE::::::EEEEEEEE:::::EN::::::N N::::::::N TT:::::::TT \n" + " CC:::::::::::::::CL::::::::::::::::::::::LI::::::::IE::::::::::::::::::::EN::::::N N:::::::N T:::::::::T \n" + " CCC::::::::::::CL::::::::::::::::::::::LI::::::::IE::::::::::::::::::::EN::::::N N::::::N T:::::::::T \n" + " CCCCCCCCCCCCCLLLLLLLLLLLLLLLLLLLLLLLLIIIIIIIIIIEEEEEEEEEEEEEEEEEEEEEENNNNNNNN NNNNNNN TTTTTTTTTTT " ); // Long id=new Long(1); // id.toString(); // System.out.println(id); // System.out.println(); //base........................................ //base........................................ //base........................................ //输出容器中所有bean //ApplicationContext context = SpringApplication.run(ZkqyApplication.class, args); //Arrays.stream(context.getBeanDefinitionNames()).forEach(System.out::println); } }