| | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | |
| | | @SpringBootApplication |
| | | @EnableScheduling |
| | | @MapperScan("com.linghu.mapper") |
| | | public class LingHuApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(LingHuApplication.class, args); |
| | | System.out.println("(♥◠‿◠)ノ゙ 启动成功 ლ(´ڡ`ლ)゙"); |
| | | System.out.println("(♥◠‿◠)ノ゙ 灵狐geo启动成功 ლ(´ڡ`ლ)゙"); |
| | | } |
| | | |
| | | } |