oc4j jstl 数据库连接问题
我有 OAS 版本 10.1.3.3 和使用 jstl 1.1 的应用程序。在 tomcat 中(它工作得很好)在 OAS 中也工作得很好。
要使用 jstl 1.2 需要 jsp 2.1 和 servlet 2.5。 OAS 10.1.3.3 支持吗?我尝试在网上查找这种兼容性,但无法确认。
I have OAS version 10.1.3.3 and the applciation that uses jstl 1.1. in tomcat (where it works fine) does nto work fine in OAS.
To use jstl 1.2 requires jsp 2.1 and servlet 2.5. Does OAS 10.1.3.3 support this? I tried to find online for this compatibility but could not confirm it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要配置 OC4J 以使用 JSTL:
jakarta-taglibs-standard-1.0.zip
,该文件从 Apache 下载到一个目录,例如D:\mydir
。D:\mydir\jakarta-taglibs\jstl-1.0\lib
中的文件复制到\default-web-app\WEB-INF\lib
>。如果目录\default-web-app\WEB-INF\lib
不存在,请创建它。JstlSql.jsp
复制到目录http://:/examples/jsp/JstlSql.jsp
来源:"如何使用 SQL JSP 标准库" (Google 缓存 )。
You are probably need to configure OC4J to use JSTL:
jakarta-taglibs-standard-1.0.zip
, the file downloded from Apache to a directory, sayD:\mydir
.D:\mydir\jakarta-taglibs\jstl-1.0\lib
to<J2EE_HOME>\default-web-app\WEB-INF\lib
. If the directory<J2EE_HOME>\default-web-app\WEB-INF\lib
is not present, create it.JstlSql.jsp
to the directory<J2EE_HOME>\default-web-app\examples\jsp
http://<host-name>:<port>/examples/jsp/JstlSql.jsp
Source: "How to use SQL JSP Standard Library" (google cache).