123456789101112131415161718192021222324252627 |
- package com.jjt;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
- import org.springframework.scheduling.annotation.EnableAsync;
- /**
- * 启动程序
- *
- * @author jjt
- */
- @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
- @EnableAsync
- public class JjtApplication {
- public static void main(String[] args) {
- // System.setProperty("spring.devtools.restart.enabled", "false");
- SpringApplication.run(JjtApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 程序启动成功 ლ(´ڡ`ლ)゙ \n" +
- " ██╗ ██╗ ████████╗\n" +
- " ██║ ██║ ╚══██╔══╝\n" +
- " ██║ ██║ ██║ \n" +
- "██ ██║ ██ ██║ ██║ \n" +
- "╚█████╔╝ ╚█████╔╝ ██║ \n" +
- " ╚════╝ ╚════╝ ╚═╝ ");
- }
- }
|