--删除主数据service中的启动类
This commit is contained in:
@ -1,28 +0,0 @@
|
||||
package com.xjrsoft;
|
||||
|
||||
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;
|
||||
|
||||
import com.pictc.utils.SpringTools;
|
||||
import com.xjrsoft.common.annotation.UniqueNameGenerator;
|
||||
|
||||
/**
|
||||
* @author 张福财
|
||||
* 主数据服务---开发使用
|
||||
* 使用时集成到其它模块使用,不作为单独的服务
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableAspectJAutoProxy(exposeProxy = true)
|
||||
@ComponentScan(nameGenerator = UniqueNameGenerator.class)
|
||||
@EnableFeignClients
|
||||
@EnableDiscoveryClient
|
||||
public class ITCMdmApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringTools.logStarter(ITCMdmApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user