23 lines
631 B
Java
23 lines
631 B
Java
package com.lyh;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
/**
|
|
* @ProjectName: Default (Template) Project
|
|
* @Author: LiuYunHu
|
|
* @CreateTime: 2024/4/1
|
|
* @Description: 负载中心模块启动类
|
|
*/
|
|
|
|
@SpringBootApplication
|
|
@EnableScheduling
|
|
//@EnableFeignClients
|
|
public class LoadCenterApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(LoadCenterApplication.class, args);
|
|
System.out.println("负载中心模块启动成功");
|
|
}
|
|
}
|