修改启动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

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