WebMvcConfigurer.class (does not exist)

报错信息

Failed to process import candidates for configuration class [com.mw.coinquote.server.CoinQuoteServerApplication]; nested exception is java.io.FileNotFoundException: class path resource
[org/springframework/web/servlet/config/annotation/WebMvcConfigurer.class] cannot be opened because it does not exist
at org.springframework.context.annotation.ConfigurationClassParser.processImports

报错原因:

1、我用了@Slf4j 注解却没有导入相应的log jar包依赖,@Slf4j注解其实只充当接口,不引入包编译阶段也不会报错,等到运行时才报找不到某某类的错,引入包才算是实现了。
2、关键是我公司用的这个log依赖 是自己定义的,额外包含了很多其他依赖,其中包含webmvc的包
3、所以没导入log依赖,也就没导入webmvc依赖,就报找不到WebMvcConfigurer的类

你可能感兴趣的:(springboot,java,spring)