mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-19 17:35:54 +08:00
发布v1.1版本
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.ruoyi;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
||||
import org.springframework.core.annotation.Order;
|
||||
|
||||
/**
|
||||
* 启动程序
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
|
||||
public class WumeiSmartApplication
|
||||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
// System.setProperty("spring.devtools.restart.enabled", "false");
|
||||
SpringApplication.run(WumeiSmartApplication.class, args);
|
||||
System.out.println(" _ _ \n" +
|
||||
" (_) | | \n" +
|
||||
"__ ___ _ _ __ ___ ___ _ ___ _ __ ___ __ _ _ __| |_ \n" +
|
||||
"\\ \\ /\\ / / | | | '_ ` _ \\ / _ \\ | / __| '_ ` _ \\ / _` | '__| __| \n" +
|
||||
" \\ V V /| |_| | | | | | | __/ | \\__ \\ | | | | | (_| | | | |_ \n" +
|
||||
" \\_/\\_/ \\__,_|_| |_| |_|\\___|_| |___/_| |_| |_|\\__,_|_| \\__| \n");
|
||||
System.out.println(
|
||||
" ----------开源生活物联网平台-----------\n" +
|
||||
" =========wumei-smart启动成功=========\n");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user