@EnableFeignClients注解报红的解决方案
前言
两天,是的,没错,我被这个注解EnableFeignClients卡了两天,度娘都快翻烂了,最后的原因,你绝对想不到,特此记录一下。
首先来看下我这人畜无害的配置,是不是看起来一切正常?但是,就是启动类里面的那个EnableFeignClients一直报红,尝试了各种办法,未果。
一、pom文件
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.6.RELEASE<