您的位置:首页 > 编程语言 > Java开发

servelet 2.4 +eclipse3.6+struts2.3.16:Can not find the tag library descriptor for "/struts- tags" 2

2015-07-23 10:14 260 查看


servelet 2.4 +eclipse3.6+struts2.3.16:Can not find the tag library descriptor for "/struts- tags"

2014-02-12 12:49 430人阅读 评论(0) 收藏 举报

错误提示:Can not find the tag library descriptor for "/struts- tags"

首先,很多例子总都会说,在jsp中要包括

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


以上三个都是struts1的tag,
在structs2中,用一个单独的tld,“struts-tag.tld”, 存放在struts2-core-2.x.x.jar中。
只要在jsp中,加入以下代码就可以了

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

然后再web.xml中:

<jsp-config>

<taglib>

<taglib-uri>/struts-tags</taglib-uri>

<taglib-location>/WEB-INF/lib/struts2-core-2.3.16.jar</taglib-location>

</taglib>

</jsp-config>
一定要加<jsp-config>,这是和以往的版本不一样的地方,好像servelet2.3之前都不用加,

最后将struts2-core-2.3.16.jar放入你的项目的/WEB-INF/lib中
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: