New file |
| | |
| | | package com.kidgrow; |
| | | |
| | | import com.kidgrow.ribbon.annotation.EnableFeignTenantInterceptor; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
| | | import org.springframework.cloud.openfeign.EnableFeignClients; |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * |
| | | * @Description: <br> |
| | | * @Project: <br> |
| | | * @CreateDate: Created in 2020/4/1 09:51 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | */ |
| | | @SpringBootApplication |
| | | @EnableFeignClients |
| | | @EnableDiscoveryClient |
| | | @EnableFeignTenantInterceptor |
| | | public class OprationCenterApplication { |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(OprationCenterApplication.class,args); |
| | | } |
| | | } |