首页 > 代码库 > 【FAQ】HTTP Status 500 - Unable to compile class for JSP:'***' cannot be resolved to a type

【FAQ】HTTP Status 500 - Unable to compile class for JSP:'***' cannot be resolved to a type

1、问题现象

2、解决方法

原因分析:cannot be resolved to a type 基本上是该类没有被识别出来,编译的时候,编译路径下没有该类对应的库文件,

可以通过下面几步解决:

1、拷贝类对应的jar到tomcat lib目录下:C:\Program Files\Java\apache-tomcat-8.0.9\lib

1、关闭tomcat服务器:执行bat文件 C:\Program Files\Java\apache-tomcat-8.0.9\bin\shutdown.bat

2、重新启动tomcat服务器,重新访问页面,该问题现象消失