springboot项目启动报错org.apache.tomcat.util.modeler.Registry.disableRegistry()V

springboot项目启动报org.apache.tomcat.util.modeler.Registry.disableRegistry的错误


原因就是spring boot的版本和tomcat的版本不对应导致的
spring-boot-dependencies中版本如果是2.4.0的时候,对应的tomcat的配置为9.0.39,如果tomcat的版本是8.xx的话,此时启动服务就会出异常。

这个时候,有两个选择:
1.修改spring boot的版本到2.0.1.RELEASE;
2.修改spring-boot版本中的tomcat的版本改为8.xx

一般版本问题只要找到相应的版本对应关系就比较容易找到解决方案。

你可能感兴趣的:(java,bug,java,bug,spring,boot,tomcat)