| | |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; |
| | | import org.springframework.boot.web.servlet.ServletComponentScan; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | |
| | | /** |
| | | * 启动程序 |
| | |
| | | */ |
| | | |
| | | |
| | | @EnableScheduling //定时任务 |
| | | @ServletComponentScan //webSocket |
| | | @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class }) |
| | | public class MesApplication |
| | | { |