RuoYiApplication.java 1.2 KB

123456789101112131415161718192021222324252627282930
  1. package com.recruit;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
  5. /**
  6. * 启动程序
  7. *
  8. * @author recruit
  9. */
  10. @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
  11. public class RuoYiApplication
  12. {
  13. public static void main(String[] args)
  14. {
  15. // System.setProperty("spring.devtools.restart.enabled", "false");
  16. SpringApplication.run(RuoYiApplication.class, args);
  17. System.out.println("(♥◠‿◠)ノ゙ 若依启动成功 ლ(´ڡ`ლ)゙ \n" +
  18. " .-------. ____ __ \n" +
  19. " | _ _ \\ \\ \\ / / \n" +
  20. " | ( ' ) | \\ _. / ' \n" +
  21. " |(_ o _) / _( )_ .' \n" +
  22. " | (_,_).' __ ___(_ o _)' \n" +
  23. " | |\\ \\ | || |(_,_)' \n" +
  24. " | | \\ `' /| `-' / \n" +
  25. " | | \\ / \\ / \n" +
  26. " ''-' `'-' `-..-' ");
  27. }
  28. }