标签:art frame gateway spring serve 无法 记录 mic 排除
gatweway使用的是webflux,webflux属于响应式编程,与原生的servlet会产生冲突,
从依赖中去掉spring-boot-starter-web,如果继续报错说明依赖中从其他包中依旧导入了spring-boot-starter-web,需要全部排除
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</exclusion>
</exclusions>
############ 未完待续
标签:art frame gateway spring serve 无法 记录 mic 排除
原文地址:https://www.cnblogs.com/jckon/p/14669439.html