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

来源:互联网 发布:淘宝毛衣外套 编辑:程序博客网 时间:2024/04/30 20:18

错误提示: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中

0 0
原创粉丝点击