| | |
| | | package com.kidgrow; |
| | | |
| | | import com.kidgrow.ribbon.annotation.EnableFeignInterceptor; |
| | | 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> |
| | |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | */ |
| | | @SpringBootApplication |
| | | @EnableFeignClients |
| | | @EnableDiscoveryClient |
| | | @EnableFeignInterceptor |
| | | public class OprationCenterApplication { |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(OprationCenterApplication.class,args); |