OneCardIotClientConfiguration.java 389 B

123456789101112
  1. package com.zhongshu.iot.client.config;
  2. import org.springframework.cloud.openfeign.EnableFeignClients;
  3. import org.springframework.context.annotation.ComponentScan;
  4. import org.springframework.context.annotation.Configuration;
  5. @Configuration
  6. @EnableFeignClients("com.zhongshu.iot.client.service")
  7. @ComponentScan({"com.zhongshu.iot.client"})
  8. public class OneCardIotClientConfiguration {
  9. }