| | |
| | | */ |
| | | 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); |
| | | } |
| | | |
| | | } |