mirror of
https://github.com/kerwincui/FastBee.git
synced 2025-12-24 12:48:02 +08:00
21 lines
498 B
Java
21 lines
498 B
Java
package com.fastbee;
|
|
|
|
import com.dtflys.forest.springboot.annotation.ForestScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* 启动程序
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@SpringBootApplication
|
|
public class FastBeeApplication
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
// System.setProperty("spring.devtools.restart.enabled", "false");
|
|
SpringApplication.run(FastBeeApplication.class, args);
|
|
}
|
|
}
|