This commit is contained in:
dute7liang
2023-12-19 22:25:27 +08:00
parent 5676aa7fde
commit 5b04a92a55
385 changed files with 31644 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package com.bashi;
import org.dromara.x.file.storage.spring.EnableFileStorage;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* 启动程序
*
* @author duteliang
*/
@SpringBootApplication
@EnableScheduling
@EnableFileStorage
public class BaShiApplication {
public static void main(String[] args) {
System.setProperty("spring.devtools.restart.enabled", "false");
System.setProperty("druid.mysql.usePingMethod", "false");
SpringApplication.run(BaShiApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 巴适启动成功 ლ(´ڡ`ლ)゙");
}
}