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; import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession; /** * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
* * @Description:
* @Project:
* @CreateDate: Created in 2020/2/20 10:27
* @Author: liuke */ @SpringBootApplication @EnableFeignClients @EnableFeignInterceptor @EnableDiscoveryClient @EnableRedisHttpSession public class UaaServerApplication { public static void main(String[] args) { SpringApplication.run(UaaServerApplication.class,args); } }