You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
389 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. package com.spring;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.scheduling.annotation.EnableScheduling;
  5. @SpringBootApplication
  6. @EnableScheduling
  7. public class GaoTaoApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(GaoTaoApplication.class, args);
  10. }
  11. }