程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 使用JFinal的第一個項目出現的問題(The return type is incompatible with JspSourceDependent.getDependants()),dependants

使用JFinal的第一個項目出現的問題(The return type is incompatible with JspSourceDependent.getDependants()),dependants

編輯:JAVA綜合教程

使用JFinal的第一個項目出現的問題(The return type is incompatible with JspSourceDependent.getDependants()),dependants


四月 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。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved