blob: e60b1d5e73ab393efb4b4372d9f61dc55a51c966 [file] [log] [blame]
223010243394e0e2025-04-15 17:47:02 +08001package edu.bjtu.groupone.backend;
2
Your Name695f6a62025-05-17 00:58:04 +08003import org.mybatis.spring.annotation.MapperScan;
223010243394e0e2025-04-15 17:47:02 +08004import org.springframework.boot.SpringApplication;
5import org.springframework.boot.autoconfigure.SpringBootApplication;
Your Name695f6a62025-05-17 00:58:04 +08006import org.springframework.boot.web.servlet.ServletComponentScan;
7import org.springframework.scheduling.annotation.EnableScheduling;
223010243394e0e2025-04-15 17:47:02 +08008
Your Name695f6a62025-05-17 00:58:04 +08009@EnableScheduling
10@ServletComponentScan
223010243394e0e2025-04-15 17:47:02 +080011@SpringBootApplication
Your Name695f6a62025-05-17 00:58:04 +080012@MapperScan("edu.bjtu.groupone.backend.mapper")
223010243394e0e2025-04-15 17:47:02 +080013public class BackendApplication {
14
Your Name695f6a62025-05-17 00:58:04 +080015 public static void main(String[] args) {
16 SpringApplication.run(BackendApplication.class, args);
17 }
223010243394e0e2025-04-15 17:47:02 +080018}