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-12-30 12:03:35 浏览: 292
ServletContext与ServletConfig关系
4星 · 用户满意度95%
这个错误通常是由于Spring Boot版本与Servlet版本不兼容引起的。你可以尝试升级或降级Servlet版本来解决这个问题。另外,你也可以检查一下你的项目中是否存在多个Servlet API的版本,如果存在,则需要将其统一为同一个版本。最后,你还可以尝试在启动类上添加`@ServletComponentScan`注解来扫描Servlet组件。希望这些方法能够帮助你解决问题。
阅读全文