四月 08, 2016 4:35:34 下午 org.apache.catalina.core.ApplicationDispatcher invoke嚴重: Servlet.service() for servlet jsp threw exceptionorg.apache.jasper.Jas ...
四月 08, 2016 4:35:34 下午 org.apache.catalina.core.ApplicationDispatcher invoke
嚴重: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: [39] in the generated java file: [D:\Tomcat 8.0\work\Catalina\localhost\xiaomudu\org\apache\jsp\index_jsp.java]
The return type is incompatible with JspSourceDependent.getDependants()
原因是:在jetty-server-8.1.8.jar里getDependants的返回值是List<String>型,
Tomcat 8.0生成的返回類型是Map<java.lang.String,java.lang.Long> 。
二者不一致。
解決辦法是:刪掉這個jar包,即jetty-server-8.1.8.jar。