湖北武汉水利工程java后台
zhongrj
2023-03-28 13d9b2eae29165432befb54ba8448a25661370f5
skjcmanager-service/skjcmanager-system/src/main/java/cn/gistack/system/SystemApplication.java
@@ -16,19 +16,22 @@
 */
package cn.gistack.system;
import cn.gistack.common.constant.AppsConstant;
import org.springblade.core.cloud.client.BladeCloudApplication;
import org.springblade.core.launch.BladeApplication;
import org.springblade.core.launch.constant.AppConstant;
import org.springframework.cloud.openfeign.EnableFeignClients;
/**
 * 系统模块启动器
 * @author Chill
 */
@BladeCloudApplication
@EnableFeignClients(basePackages = "cn.gistack.system.user.feign")
public class SystemApplication {
   public static void main(String[] args) {
      BladeApplication.run(AppConstant.APPLICATION_SYSTEM_NAME, SystemApplication.class, args);
      BladeApplication.run(AppsConstant.APPLICATION_SYSTEM_NAME, SystemApplication.class, args);
   }
}