我无法在 ubuntu OS 中的 tomcat8 中创建自定义标签而不取消任何 IDE

I'm unable to create a custom tag in tomcat8 in ubuntu OS without unsing any IDE

我必须创建自定义标签来完成我的项目,而无需在 ubuntu(Linux) 上使用任何 IDE,但我反复收到错误消息。

为了创建自定义标签,我制作了两个文件 tagfileone.tag 和 tagfileonetest.jsp,它们的位置如下: tagfileonetest.jsp: /var/lib/tomcat8/webapps/ROOT/Trying_Tag 对于 tagfileone.tag: /var/lib/tomcat8/webapps/ROOT/Trying_Tag/WEB-INF/tag

这里 Trying_Tag 是我的 Web 应用程序所在目录的名称。

但是我在 运行 时在浏览器上重复出现错误,上面写着:

Trying_Tag/tagfileonetest.jsp (line: 13, column: 28) No tag "tagfileone" defined in tag library imported with prefix "tf"

我正在添加快照以获得更多许可。 如果有人能提供帮助,我将不胜感激......

Path to JSP File

Path to Tag file

code1

code2

Error

在默认 Ubuntu 配置下 Tomcat 自动部署 /var/lib/tomcat8/webapps 中的所有目录。您没有部署应用程序 Trying_Tag,而只部署了具有文件夹 Trying_Tag 的应用程序 ROOT。因此,您的 JSP 正在文件夹 /var/lib/tomcat8/webapps/ROOT/WEB-INF/tags 中查找标记文件,但未找到任何标记文件。

Trying_Tag 文件夹移至 /var/lib/tomcat8/webapps,然后一切正常。

备注: URLs 将保持不变,因为名为 ROOT 的 Web 应用程序具有空上下文路径,因此 ROOT/foo/bar.jsp 将可以通过空上下文路径和 /foo/bar.jsp 作为路径信息访问(串联为 /foo/bar.jsp),而 foo/bar.jsp 将具有 /foo 的上下文路径和路径信息/bar.jsp,结果相同 URL。