Springboot启动报错:An incompatible version [1.1.33] of the Apache Tomcat Native library is installed, while Tomcat requires version [1.2.14]
原因分析:
字面意思就是当前安装的版本为1.1.33,运行需要重新下载1.2.14版本。tomcat为SpringBoot的内置环境,Apache把 httpd的底层库与上层应用逻辑分离,底层库单独发行,底层这就是Apache Portable Runtime Library,简称APR。APR在跨平台方面,支持多种平台,主要有:UNIX variants Windows Netware Mac OS X OS/2 ,APR把很多常用功能都封装好了,所以我们要把新下载的文件放在环境变量中。
解决方法:
下载文件tomcat-native-1.2.14-win32-bin.zip
网址:http://archive.apache.org/dist/tomcat/tomcat-connectors/native/1.2.14/binaries/
下载后解压缩文件,在bin目录下找到tcnative-1.dll,电脑是64位就在x64目录下寻找。
把文件放到环境变量中,有三种方式:
1.将文件拷贝到C:\Windows\System32
2.放在tomcat的bin路径下
3.放在tomcat的bin和机器上安装的jdk的bin路径下