Struts tags-tiles cannot be resolved in either web.xml or the jar files(无法在 web.xml 或 jar 文件中解析 Struts 标记图块)
问题描述
我在 Eclipse IDE 和 JBoss5 服务器和 maven 中使用 Struts2 进行构建.我试图在一个简单的登录应用程序中使用磁贴.但我无法包含标签库.我已经在 pom.xml
文件中导入了所有必要的 jar 依赖项.以下是我在 maven pom.xml
文件中包含的 jar 列表:
I am using Struts2 in Eclipse IDE and JBoss5 server and maven for build. I was trying to use tiles in a simple login application. But I am not able to include the taglib. I have imported all the necessary jars dependencies in pom.xml
file. Following is the list of jars which I have included in maven pom.xml
file:
- struts2-core 2.3.15.1
- struts2-tiles-plugin 2.3.15.1
- commons-beanutils
- struts-taglib
- commons-digester
- commons-beanutils
- tiles-api
我还包括并尝试了不同的可能组合
and also I included and tried different possible combinations of
- tiles-api-2.0.3.jar
- tiles-core-2.0.3.jar
- tiles-jsp-2.0.3.jar
- struts-tiles.jar
仍然无法正常工作,错误是:
and still it is not working, the Errors are :
-The absolute uri: http://tiles.apache.org/tags-tiles cannot be resolved in either web.xml or the jar files deployed with this application
-ServletException including path '/layout.jsp'.
-ServletException including path '/layout.jsp'.
当我尝试在 JSP 页面上导入图块 taglib
时,它会显示
when I am trying to import tiles taglib
on a JSP page it says
URI: http://tiles.apache.org/tags-tiles
无法在web.xml
或随此应用程序部署的 jar 文件.
URI:
http://tiles.apache.org/tags-tiles
cannot be resolved in eitherweb.xml
or the jar files deployed with this application.
我也试过谷歌.有一些解决方案,但它们对我不起作用.
I tried Google also. Got some solutions but they didn't work for me.
推荐答案
您应该使用至少 2.4 版本的 servlet API.在图块中,您可以使用 taglib 定义
You should use servlet API at least version 2.4. In the tiles you could use taglib definition
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
不要用 Tiles 工件弄乱 Struts 1 taglib 和 tile jar.
Don't mess up Struts 1 taglib and tiles jars with Tiles artifacts.
这篇关于无法在 web.xml 或 jar 文件中解析 Struts 标记图块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在 web.xml 或 jar 文件中解析 Struts 标记图块


基础教程推荐
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01