修改启动banner

feasure
lld 2025-12-26 17:09:46 +08:00
parent c888501afd
commit fd5c0aaa7c
1 changed files with 11 additions and 15 deletions

View File

@ -9,22 +9,18 @@ import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
* *
* @author ruoyi * @author ruoyi
*/ */
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class }) @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class AgriApplication public class AgriApplication {
{ public static void main(String[] args) {
public static void main(String[] args)
{
// System.setProperty("spring.devtools.restart.enabled", "false"); // System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(AgriApplication.class, args); SpringApplication.run(AgriApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 智能农业启动成功 ლ(´ڡ`ლ)゙ \n" + System.out.println("(♥◠‿◠)ノ゙ 智能农业启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" + " ________ ________ ________ ___ \n" +
" | _ _ \\ \\ \\ / / \n" + " |\\ __ \\|\\ ____\\|\\ __ \\|\\ \\ \n" +
" | ( ' ) | \\ _. / ' \n" + " \\ \\ \\|\\ \\ \\ \\___|\\ \\ \\|\\ \\ \\ \\ \n" +
" |(_ o _) / _( )_ .' \n" + " \\ \\ __ \\ \\ \\ __\\ \\ _ _\\ \\ \\ \n" +
" | (_,_).' __ ___(_ o _)' \n" + " \\ \\ \\ \\ \\ \\ \\|\\ \\ \\ \\\\ \\\\ \\ \\ \n" +
" | |\\ \\ | || |(_,_)' \n" + " \\ \\__\\ \\__\\ \\_______\\ \\__\\\\ _\\\\ \\__\\ \n" +
" | | \\ `' /| `-' / \n" + " \\|__|\\|__|\\|_______|\\|__|\\|__|\\|__| \n");
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
} }
} }