Error creating bean with name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration': Receiver class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration does not define or inherit an implementation of the resolved method 'abstract void setServletContext(jakarta.servlet.ServletContext)' of interface org.springframework.web.context.ServletContextAware.
时间: 2023-10-03 09:03:13 浏览: 237
spring-boot-autoconfigure-2.3.12.RELEASE-API文档-中文版.zip
这个错误通常是由于Spring Boot版本与Servlet版本不兼容引起的。你可以尝试升级或降级Servlet版本来解决这个问题。另外,你也可以检查一下你的项目中是否存在多个Servlet API的版本,如果存在,则需要将其统一为同一个版本。最后,你还可以尝试在启动类上添加`@ServletComponentScan`注解来扫描Servlet组件。希望这些方法能够帮助你解决问题。
阅读全文