This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 请教关于java各种版本的问题:java有1.0,1.1...1.4,JDBC又有1.0,2.0,ejb有1.0 1.1 1.2 jsp也有各种版本,用java -version可以查JDK的版本,但如何知道当前jdbc,jsp.ejb,servlet....的版本?
-richwin(今夕何夕);
2003-10-15
(#1414164@0)
-
For JSP, Servlet check the web sevrer, EJB check the app server, for JDBC, check the classpath and boothpath which classes you use.
-badegg(badegg);
2003-10-15
(#1414179@0)
-
Thank you.For JSP, Servlet check the web sevrer, EJB check the app server, do you mean check server's document or there is command to check?
-richwin(今夕何夕);
2003-10-15
(#1414293@0)
-
when application is deployed in websphere, you will have to specify the jsp version, e.g 1.1 or 1.0. So does servlet. For ejb, I don't see it in deployment.but you can tell from what ejb was used. MessageDriven?
-tongcd(不明真相的总是群众);
2003-10-15
(#1414345@0)
-
For application server, you have to configure it using which version JDK, 12,1.3 or 1.4, check the document for detail which version EJB related JDK version.
-badegg(badegg);
2003-10-16
(#1415712@0)