查看项目的struts,hibernate,spring的版本

来源:互联网 发布:怎么设置网络扫描 编辑:程序博客网 时间:2024/06/08 19:20

查看现有项目的struts和hibernate和spring版本

找到项目包含SSH的包,通常是在WEB-INF下的lib里面。

1.struts版本: 
查看 struts.jar/META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.1
Created-By: 1.3.1_04-b02 (Sun Microsystems Inc.)
Extension-Name: Struts Framework
Specification-Title: Struts Framework
Specification-Vendor: The Apache Software Foundation
Specification-Version: 1.2.9
Implementation-Title: Struts Framework
Implementation-Vendor: The Apache Software Foundation
Implementation-Vendor-Id: org.apache
Implementation-Version: 1.2.9 
Class-Path:  commons-beanutils.jar commons-digester.jar commons-fileup
 load.jar commons-logging.jar commons-validator.jar jakarta-oro.jar

2.spring版本: 
查看 spring.jar/META-INF/MANIFEST.MF
Manifest-Version: 1.0
Export-Package: org.springframework.orm.jpa;uses:="org.apache.commons.
 logging,org.aopalliance.intercept,org.springframework.beans,org.sprin
 gframework.dao.support,org.springframework.instrument.classloading,ja
 vax.persistence,……………………
Spring-Version: 2.5.4 
Implementation-Title: Spring Framework
Implementation-Version: 2.5.4
Tool: Bnd-0.0.208
Bundle-Name: spring
Created-By: 1.6.0_05 (Sun Microsystems Inc.)
Ant-Version: Apache Ant 1.7.0
Bundle-Version: 2.5.4
Bnd-LastModified: 1209379069156
Bundle-ManifestVersion: 2
Bundle-Description: Spring Framework
Bundle-SymbolicName: org.springframework.bundle.spring
Import-Package: bsh;resolution:=optional,com.caucho.burlap.client;reso
 lution:=optional,com.caucho.b……………………
 blogic.jdbc.extensions;resolution:=optional,weblogic.transaction;reso
 lution:=optional
Originally-Created-By: 10.0-b19 (Sun Microsystems Inc.)

3.hibernate版本: 
查看 spring.jar/META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.5
Created-By: 1.4.2_11-b06 (Sun Microsystems Inc.)
Implementation-Title: Hibernate3
Implementation-Version: 3.2.3.ga
Implementation-Vendor: hibernate.org
Hibernate-Version: 3.2.3.ga

0 0