发布v1.1版本

This commit is contained in:
kerwincui
2022-03-16 14:10:16 +08:00
parent 808b7a20bf
commit 8b9b34ce41
835 changed files with 99635 additions and 0 deletions

View File

@@ -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");
}
}