我已经在Eclipse中编写了一个示例JSP文件和一个Java文件,并试图在我的JSP中调用Java类,但它不起作用。JAVA文件的代码如下:
TestJava.jva
public class TestJava {
public void test(String msg)
{
System.out.println("My name is "+msg);
}
}
Javafile位于src文件夹中。我的JSP文件test.jsp如下:
test.jsp
<%@ page language="java"
我想在JSP中使用一个java类。我将java类文件放在WEB-INF/classes/hello.class.中。
在index.jsp中,我正在为hello类创建对象。
我得到了这个错误"hello cannot be resolved to a type"。这是我的jsp代码
<%@ page import="hello" %>
<%
hello h = new hello();
out.print(h.getValue());
%>
我正在使用eclipse来管理一个JSP项目,而且我似乎不能使用我的Java类。正在引发的例外情况如下:
HTTP Status 500 - Unable to compile class for JSP:
--------------------------------------------------------------------------------
type Exception report
message Unable to compile class for JSP:
description The server encountered an internal
**HTTP Status 500 - Unable to compile class for JSP: **
type Exception report
message Unable to compile class for JSP:
description The server encountered an internal error that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JS
我有一个自定义标记,打包到一个库jar中,它包含在我的web应用程序的war文件中。
我得到以下错误:
An error occurred at line: 66 in the jsp file: /WEB-INF/jsp/portlet/portfolio/operations/operationsInfo.jsp
org.apache.jsp.tag.meta.form.WidgetFactory_tag cannot be resolved to a type
63: <c:forEach var="fldCfg" items="${config
我有一个servlet,它的类文件包含在文件路径webapps/ass2/WEB-INF/classes/User.class中,该类表示我的应用程序所需的用户bean。在jsp中,我将导入组织为`<%@page import="mypck.User“%>。当我试图加载页面时,apache tomcat抛出了一个错误
An error occurred at line: 12 in the jsp file: /fourm.jsp
User cannot be resolved to a type
9:
10: <head>
11: <%
12: Use
我有一个Java项目,其中包含三个文件delete.jsp、index.jsp和BooksWorker.java。
在这里我不能运行index.jsp,即使我把BooksWorker.class放在WEB- in /classes中。我得到的错误是:
type Exception report
message Unable to compile class for JSP:
description The server encountered an internal error that prevented it from fulfilling this request.
excepti
我创建了一个名为"Data“的类,并在JSP中调用它。当我把它组合在一起时,错误会说,
Data cannot be resolved to a type
2: pageEncoding="ISO-8859-1"%>
3: <%@ page import= " Data" %>
4: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
5:
我在导入JSP子包中的类时出错。
有效代码index.jsp:
<%@ page import="a.b.TestDetails" contentType="text/html"
pageEncoding="UTF-8" errorPage="Error/error-page.jsp"%>
我正在接收的错误:
HTTP Status 404 - Not Found
type Status report
messageNot Found
descriptionThe requested resource is n
我对Eclipse/ JSP /Beans相当陌生,但我必须在JSP文件中使用Beans来创建一个项目。我有两个项目。(A)包含JSP文件B)带有Beans的EJB项目的Maven项目
我尝试用下面的行在JSP文件中导入一个bean:
<%@page import="beans.TestSessionBean"%>
我还将EJB项目添加到项目A的构建路径(右键单击project > Builde > >Projects > Add),但这似乎没有帮助。
因此,每当我试图运行JSP文件时,都会收到以下消息:
Only a type can be
我使用的是Tomcat6.0、Eclipse SDE 7.0 Express for Web Developers和jdk1.6
在我的jsp页面中,我有一个看起来像下面这样的代码
<%
List<String> options = new ArrayList<String>();
DynamicCombo comboBox = new DynamicCombo();
options = comboBox.generateComboBox();
Collections.sort(options);
int tempVar = 0;
while (tempVar &