Liferay Taglib 导入在 JSP 中不起作用
我在 JSP 页面之一导入 liferay 标签库时遇到问题,不知道我做错了什么。我在以前的项目中做了完全相同的事情,但现在由于某种原因它不起作用。
我要导入的代码:
<%@ taglib uri="http://liferay.com/tld.ui" prefix="liferay-ui" %>
我遇到的语法错误:
The absolute uri: http://liferay.com/tld.ui cannot be resolved in either web.xml or the jar files deployed with this application
我尝试在谷歌上广泛搜索这个问题,但无济于事。 liferay 的糟糕文档(或缺乏文档)也没有太大帮助。
预先感谢您的任何帮助!
I'm having trouble importing the liferay taglibs in one of my JSP pages, no idea what I'm doing wrong. I did the exact same thing in previous projects, but now for some reason it's not working.
My code to import:
<%@ taglib uri="http://liferay.com/tld.ui" prefix="liferay-ui" %>
The syntax error I'm getting:
The absolute uri: http://liferay.com/tld.ui cannot be resolved in either web.xml or the jar files deployed with this application
I tried to google this problem quite extensively, but to no avail. The horrible documentation (or lack thereof) for liferay is also not a big help at all.
Thanks in advance for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
taglib URI 从以下位置解析(按顺序):
JSTL 和 JSF Tag Library
库。web.xml 中的 Taglib 映射
,web.xml 可以包含 URI 和 TLD 资源路径的显式映射。WEB-INF/lib 中的 JAR 文件中的 TLD
和WEB-INF 下的 TLD
Container 支持的 TLD
在您的情况下,请检查以下情况:
1) 如果与liferay相关的jar文件存在于WEB-INF/lib中,其中包含
jar/META-INF
中的TLD,该TLD将由http://liferay.com/tld.ui定义
URI。2) 如果没有 jar 文件并且
liferay-ui.tld
存在于 jar 文件之外,请在 web.xml 中添加 URI 映射条目,如下所示:The taglib URI gets resolved from the following places(in the order):
JSTL and JSF Tag Library
libraries.Taglib Map in web.xml
, the web.xml can include an explicit map of URI's and TLD's respource paths.TLDs in JAR files in WEB-INF/lib
andTLDs under WEB-INF
TLD's supported by Container
In you case, check the following cases:
1) If jar file realted to liferay exists in WEB-INF/lib containing a TLD in
jar/META-INF
which will be defined withhttp://liferay.com/tld.ui
URI.2) If there is not jar file and the
liferay-ui.tld
exists outside the jar file, add the URI mapping entrey in your web.xml like below:的是
值得注意
,“tld.ui”必须是“tld/ui”。
liferay-ui.tld 来自 util-taglib.jar,liferay 在热部署期间将其添加到您的 WEB-INF/lib 中。
不需要在 web.xml 中添加任何条目。
it is not
it should be
notice that "tld.ui" must be "tld/ui".
liferay-ui.tld comes from util-taglib.jar that liferay adds to your WEB-INF/lib during hot deploy.
No entries to your web.xml are needed.
您可能需要在 web.xml 中包含 taglib 声明。
You probably need to include taglib declaration in your web.xml.