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.

25 lines
698 B

1 year ago
package com.yxt.user;
1 year ago
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
1 year ago
* @author wangpengfei
* @date 2024/4/28 14:43
1 year ago
*/
@SpringBootApplication(scanBasePackages = {
1 year ago
"com.yxt.user.config",
1 year ago
"com.yxt.common.base.config",
1 year ago
"com.yxt.user"
1 year ago
})
// 启用自带定时任务
@EnableScheduling
@EnableFeignClients(basePackages = {})
1 year ago
public class UserApplication {
1 year ago
public static void main(String[] args) {
1 year ago
SpringApplication.run(UserApplication.class, args);
1 year ago
}
}