修改启动banner
parent
c888501afd
commit
fd5c0aaa7c
|
|
@ -6,25 +6,21 @@ 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" +
|
|
||||||
" ''-' `'-' `-..-' ");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue