-
Cannot find tag library descriptor error 10
Am doing one struts application. For that am using tag libraries. When i use the following code in my jsp file it showing:
"Cannot find tag library descriptor for/WEB-INF/tlds/struts-html.tld
Cannot find tag library descriptor for/WEB-INF/tlds/struts-logic.tld
Cannot find tag library descriptor for/WEB-INF/tlds/struts-bean.tld"
Can anybody help me in this to fix the bug.
Thanks in advance.
Regards,
singhua
2008年6月07日 15:57
2个答案 按时间排序 按投票排序
-
请检查一下几个问题:
1.文件夹下是否存在*.tld文件。
2.你页面的头部是否正确引用了taglib标签,如楼上所说。
3.在web.xml中配置的是否和页面引用的一致。2008年6月08日 09:59
-
说得好像听明白的吧。
你相应的目录下有相应的文件么?
在Struts的安装包里面找一下拷贝进去就可以了。
或者引用如下的语句:
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-bean-el" prefix="bean-el" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-html-el" prefix="html-el" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-logic-el" prefix="logic-el" %>
<%@ taglib uri="http://struts.apache.org/tags-nested" prefix="nested" %>
2008年6月08日 01:34
相关推荐
- Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
- Struts2 : Cannot find the tag library descriptor for /struts-tags in JSP 错误的可能原因
- Struts2---->Cannot find the tag library descriptor for /struts-tags
- [乐意黎原创] WebPack 打包时抛Uncaught Error: Cannot find module '.\dist\bundle.js'
- System Error Codes/系统错误代码
相关推荐
有的时候在开发jsp时,需要使用jstl时,在jsp上面引用jstl却出现错误:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core,这是由于缺少两个jar包导致的。
在使用MyEclipse进行Web开发时,可能会遇到一个常见的错误提示:“Can not find the tag library descriptor for 'http://java.sun.com/jsp/jstl/core'”。这个错误通常意味着你的项目缺少JSTL(JavaServer Pages ...
关于jsp中报错:cannot find the tag library descriptor for http://java.sun.com/jsp/jstl/core-附件资源
然而,开发者在使用JSTL时,可能会遇到"Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/""这样的错误,这通常意味着系统无法找到JSTL的相关组件。本文将详细探讨这个问题,并提供解决...
这告诉JSP容器,`http://java.sun.com/jsp/jstl/core`这个URI对应的TLD(Tag Library Descriptor)文件是`/WEB-INF/c.tld`,这个文件会告诉容器如何解析`c:`标签。 4. **验证设置**:完成上述步骤后,清理并重新...
- `google.tld`:这是Tag Library的标签库描述文件(Tag Library Descriptor),定义了库中的标签、属性和指令。在JSP(JavaServer Pages)环境中,开发人员可以使用这些标签来嵌入和控制Google服务的标记。 4. **...
`google.tld`是Tag Library Descriptor文件,它是JSP(JavaServer Pages)技术的一部分,用于定义自定义标签库。在这个文件中,Google Tag Library的每个功能都被封装成一个标签,使得开发者可以通过XML语法在JSP...
Tag Library Descriptor (TLD) 文件是JavaServer Pages (JSP) 标签库的一部分,用于定义自定义标签的行为和属性。在这个文件中,Google Tag Library的所有自定义标签都进行了描述,包括它们的名称、参数、返回类型...
mysql默认是线程不安全的...[MDEV-9749] InnoDB receives 'Bad file descriptor' error, possibly related to feedback plugin Lost connection to MySQL server at 'handshake- reading initial communication packet'
Android Linux 开发 USB 错误-Device Descriptor Read/64, Error -62 解决方法总结 Android Linux 开发中,USB 设备的 descriptor 读取错误是一个常见的问题,特别是在使用 S3C6410 开发板时。这种错误通常表现为 ...
### 彻底解决USB错误-device descriptor read/64, error -62 #### 错误现象分析 在遇到“usb 1-1: device descriptor read/64, error -62”这一错误时,通常意味着当尝试读取USB设备描述符时出现了超时的情况。...
要解决“Can not find the tag library descriptor”的问题,你需要确保以下步骤已经正确执行: 1. **导入库文件**:将`jstl1.2.jar`和`standard.jar`添加到项目的类路径(Classpath)中。这通常意味着将它们放入...
在Java Web开发中,JSTL(JavaServer Pages ...遇到“Can not find the tag library descriptor”这类问题时,只需正确导入这两个库,即可解决。在实际开发中,理解并熟练运用这些库能够大大提高开发效率和代码质量。
总的来说,"Can not find the tag library descriptor"错误通常是因为缺少必要的JSTL依赖或配置不正确。通过检查和修正这些方面,通常可以成功解决这个问题,使得JSTL标签在JSP页面中正常工作。
2. **google.tld**:这是一个Tag Library Descriptor (TLD) 文件,用于定义自定义的JavaServer Pages (JSP) 标签。开发者可以使用这些预定义的标签,直接在JSP页面上进行标记集成,简化了前端代码的编写。 3. **...
`.tld`文件代表Tag Library Descriptor,它是JavaServer Pages (JSP) 技术的一部分,用来定义自定义标签库。`google.tld`可能包含了Google Tag Library中所有自定义标签的描述,包括它们的属性、事件处理程序等。...
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core" 解决办法:jstl.jar standard.jar 两个Jar包解决此问题的方法
在Java技术中,标记库通常以TLD(Tag Library Descriptor)文件的形式存在,这些文件描述了标签的行为、属性和事件处理。 标记库的使用大大提高了JSP页面的可维护性和可重用性,因为它们将业务逻辑和视图层分离。...
`pager-tagl.tld`文件就是这样一个专门用于页面分页的标签库定义文件(Tag Library Descriptor),它简化了在JSP中实现分页功能的复杂性,提高了开发效率。本文将深入探讨`pager-tagl.tld`的含义、作用以及如何安装...
在处理"Can not find the tag library descriptor for 'http://java.sun.com/jsp/jstl/core'"这类错误时,通常需要引入`jstl.jar`和`standard.jar`这两个关键的JAR文件。 首先,`jstl.jar`文件包含了JSTL的核心库,...