2025-04-28 15:12:21 +08:00
|
|
|
package com.xjrsoft;
|
2025-02-08 17:51:37 +08:00
|
|
|
|
2025-04-28 15:12:21 +08:00
|
|
|
import com.xjrsoft.common.annotation.UniqueNameGenerator;
|
2025-02-08 17:51:37 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2025-04-28 15:12:21 +08:00
|
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
2025-02-08 17:51:37 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author Zexy
|
|
|
|
|
*/
|
|
|
|
|
@SpringBootApplication
|
2025-04-28 15:12:21 +08:00
|
|
|
@EnableAspectJAutoProxy(exposeProxy = true)
|
|
|
|
|
@ComponentScan(nameGenerator = UniqueNameGenerator.class)
|
|
|
|
|
@EnableFeignClients
|
2025-02-08 17:51:37 +08:00
|
|
|
@EnableDiscoveryClient
|
2025-04-28 15:12:21 +08:00
|
|
|
public class ITCFacadeApplication {
|
|
|
|
|
|
2025-02-08 17:51:37 +08:00
|
|
|
public static void main(String[] args) {
|
2025-04-28 15:12:21 +08:00
|
|
|
SpringApplication.run(ITCFacadeApplication.class, args);
|
2025-02-08 17:51:37 +08:00
|
|
|
}
|
2025-04-28 15:12:21 +08:00
|
|
|
|
2025-02-08 17:51:37 +08:00
|
|
|
}
|