| | |
| | | */ |
| | | package com.vci.ubcs.code; |
| | | |
| | | import com.vci.ubcs.starter.util.VciSpringUtil; |
| | | import org.springblade.core.cloud.client.UbcsCloudApplication; |
| | | import org.springblade.core.launch.UbcsApplication; |
| | | import org.springblade.core.launch.constant.AppConstant; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.cache.annotation.EnableCaching; |
| | | import org.springframework.cloud.openfeign.EnableFeignClients; |
| | | import org.springframework.context.annotation.ComponentScan; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | | * Code启动器 |
| | | * |
| | | * @author |
| | | * |
| | | * ludc |
| | | */ |
| | | @SpringBootApplication |
| | | @EnableFeignClients(basePackages = {"com.vci.*"}) |
| | | @ComponentScan({"com.vci.*"}) |
| | | @EnableScheduling |
| | | @EnableCaching |
| | | @UbcsCloudApplication |
| | | @ComponentScan("com.vci.ubcs.*") |
| | | public class CodeApplication { |
| | | |
| | | public static void main(String[] args) { |