错误-找不到“ / struts-tags”的标签库描述符

我在我的jsp文件上收到此错误-‘找不到“ / struts-tags”的标签库描述符”

奇怪的是,我的应用似乎仍然可以正常工作。

我正在遵循以下教程-http: //struts.apache.org/2.x/docs/using-

struts-2-tags.html

这是代码。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> 

<%@ taglib prefix="s" uri="/struts-tags" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<title>Hello World!</title>

</head>

<body>

<h2><s:property value="messageStore.message" /></h2>

<p>I've said hello <s:property value="helloCount" /> times!</p>

<p><s:property value="messageStore" /></p>

</body>

</html>

谢谢

回答:

您是否已将struts2-core-.jar添加到项目的库中?如果您有尝试清理项目。

以上是 错误-找不到“ / struts-tags”的标签库描述符 的全部内容, 来源链接: utcz.com/qa/420569.html

回到顶部