1

我正在尝试运行登录页面但得到org.apache.jasper.JasperException: Failed to load or instantiate TagExtraInfo class: org.apache.struts.taglib.logic.IterateTei

登录.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Fetch CAMS Data and Upload it to CM</title>
</head>
<body>
<html:form action="/Login_Act">
<html:errors/>
<table width="500" align="center">
<caption>Login<br/><br/><br/><br/><br/><br/></caption>
<tr>
<td>
User Name :
</td>

<td>
<html:text property="userName" value=""/>
</td>

</tr>
<tr>
<td>
Password :
</td>

<td>
<html:password property="pwd" value=""/>
</td>

</tr>

<tr>
<td colspan="2" align="center">
<html:submit value="Login"/>

</td>

</tr>
</table>
</html:form>
</body>
</html>

我已经添加struts.jarstruts1.4.8.jar在构建路径中,仍然出现错误。

4

1 回答 1

2
  • 确保 struts.jar 在您的 webapp 的类路径中(如果它还没有,请将其添加到 WEB-INF/lib)
  • 确保 jsp-api.2.0.jar 不在 WEB-INF/lib 中
于 2012-07-19T12:31:30.393 回答