28 lines
899 B
Java
28 lines
899 B
Java
|
|
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);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|