在 FF3.5 中使用 strut
我使用 struts2
创建了一个 Web 应用程序,它在 firefox 3.6 中运行良好,但在 3.5 中运行不佳
使用的库文件:
Struts 2 core - commons-io-1.3.2.jar
Struts 2 core - commons-logging-1.1.jar
Struts 2 core - commons-fileupload-1.2.1.jar
Struts 2 core - freemarker-2.3.13.jar
Struts 2 core - sturts2-core-2.1.6.jar
Struts 2 core - ognl-2.6.11.jar
Struts 2 core - xwork-2.1.2.jar
Struts 2 core - log4j-1.2.9.jar
xwork-core-2.1.6.jar
struts2-jquery-plugin-2.3.0.jar
struts2-json-plugin-2.1.8.1.jar
使用的服务器 - Glassfish V3
我还使用过jquery javascript库v1.4.2
任何人都可以帮我找出为什么它不起作用以及我应该做什么才能使它在FF3.5?
我包含了两个文件:
<%@taglib uri="/struts-tags" prefix="s"%><br>
<%@taglib prefix="sj" uri="/struts-jquery-tags"%><br>
只有我的 s: 标签有效,但 sj: 标签无效
I had created a web application using struts2
and it works fine in firefox 3.6 but not in 3.5
Library files used:
Struts 2 core - commons-io-1.3.2.jar
Struts 2 core - commons-logging-1.1.jar
Struts 2 core - commons-fileupload-1.2.1.jar
Struts 2 core - freemarker-2.3.13.jar
Struts 2 core - sturts2-core-2.1.6.jar
Struts 2 core - ognl-2.6.11.jar
Struts 2 core - xwork-2.1.2.jar
Struts 2 core - log4j-1.2.9.jar
xwork-core-2.1.6.jar
struts2-jquery-plugin-2.3.0.jar
struts2-json-plugin-2.1.8.1.jar
Server used - Glassfish V3
Also I had used jquery javascript library v1.4.2
Can anyone please help me to find why its not working and what should i do to make it work in FF3.5?
I had included two files:
<%@taglib uri="/struts-tags" prefix="s"%><br>
<%@taglib prefix="sj" uri="/struts-jquery-tags"%><br>
Only my s: tags are working but not sj: tags
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是在黑暗中进行疯狂的尝试,但我见过的所有 Struts 示例都以不同的顺序(uri 位于前缀之前)来标记库的属性:
也许它希望以特定的顺序解析属性?如果您发布了 Web 容器的一些日志/输出,将会有所帮助。
Just a wild stab in the dark, but all the Struts examples I've seen have the attributes for the taglibs in a different order (uri ahead of prefix):
Maybe it expects to parse the attributes in a specific order? It would help if you'd posted some of the logs / output from your web container.