Java EE 5.0 的配置

发布于 2024-10-15 05:35:35 字数 108 浏览 2 评论 0原文

我想知道Java EE 5.0版本中使用的JSP和Servlet(确切的)版本。我刚刚在 web.xml 文件中添加了 web-app_2_5.xsd。想要检查 JAR 文件。

I want to know the JSP and Servlet (exact) version used in the Java EE 5.0 version. I have just added the web-app_2_5.xsd in the web.xml file. Want to check the JAR files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看轻我的陪伴 2024-10-22 05:35:35

Java EE 5.0 附带 Servlet 2.5 和 JSP 2.1。您不需要修改现有 Java EE 环境中的任何 JAR 文件。就这一点而言,您需要确保整个环境本身都支持它。合适的环境是支持 Servlet 2.5 的容器/服务器,例如 Tomcat 6Oracle Glassfish 2JBoss AS 5 。它们可以在自己的主页上下载。

您还需要确保您的 web 应用程序的 /WEB-INF/lib 文件夹以及 JRE/libJRE/lib/ext 不包含任何特定于 servletcontainer 的库,例如 jsp-api.jarservlet-api.jar 等,源自旧版本的 servletcontainer。它们可能会与真实 servletcontainer 的库发生冲突,并导致 NoClassDefFoundErrorAbstractMethodError 异常等。

Java EE 5.0 ships with Servlet 2.5 and JSP 2.1. You should not have the need to modify any JAR files in an existing Java EE environment. To the point, you need to ensure that the whole environment at its own supports it. A proper environment would be a Servlet 2.5 capable container/server, for example Tomcat 6, Oracle Glassfish 2, JBoss AS 5. They are downloadable at their own homepages.

You also need to ensure that your webapp's /WEB-INF/lib folder and the JRE/lib and JRE/lib/ext do not contain any servletcontainer-specific libraries like jsp-api.jar, servlet-api.jar, etcetera, which originated in an older versioned servletcontainer. They may collide with the libraries of the real servletcontainer and result in NoClassDefFoundError, AbstractMethodError exceptions and like that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文