Java EE 5.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java EE 5.0 附带 Servlet 2.5 和 JSP 2.1。您不需要修改现有 Java EE 环境中的任何 JAR 文件。就这一点而言,您需要确保整个环境本身都支持它。合适的环境是支持 Servlet 2.5 的容器/服务器,例如 Tomcat 6、Oracle Glassfish 2、JBoss AS 5 。它们可以在自己的主页上下载。
您还需要确保您的 web 应用程序的
/WEB-INF/lib
文件夹以及JRE/lib
和JRE/lib/ext
不包含任何特定于 servletcontainer 的库,例如jsp-api.jar
、servlet-api.jar
等,源自旧版本的 servletcontainer。它们可能会与真实 servletcontainer 的库发生冲突,并导致NoClassDefFoundError
、AbstractMethodError
异常等。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 theJRE/lib
andJRE/lib/ext
do not contain any servletcontainer-specific libraries likejsp-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 inNoClassDefFoundError
,AbstractMethodError
exceptions and like that.