微服务后端空项目初始化

This commit is contained in:
yaoyn
2025-04-28 15:12:21 +08:00
parent 9b7d27a2b4
commit 03225ee88a
1927 changed files with 2448 additions and 359209 deletions

View File

@ -0,0 +1,25 @@
package com.xjrsoft;
import com.xjrsoft.common.annotation.UniqueNameGenerator;
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;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
/**
* @author Zexy
*/
@SpringBootApplication
@EnableAspectJAutoProxy(exposeProxy = true)
@ComponentScan(nameGenerator = UniqueNameGenerator.class)
@EnableFeignClients
@EnableDiscoveryClient
public class ITCFacadeApplication {
public static void main(String[] args) {
SpringApplication.run(ITCFacadeApplication.class, args);
}
}