zoukankan      html  css  js  c++  java
  • Servlet和JSP规范及版本对应关系

    Apache官方对各版本的申明:http://tomcat.apache.org/whichversion.html

    如何看自己java  web工程的JSP和servlet版本

    我的tomcat版本是7.0.26

    方法:打开tomcat/lib,找到jsp-api.jar和servlet-api.jar。解压这两个文件,找到META-INF下的MANIFEST.MF文件。用记事本或者EditPlus一类的软件打开。

    我的JSP版本是:

    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.8.2
    Created-By: 1.6.0_29-b11 (Sun Microsystems Inc.)
    X-Compile-Source-JDK: 1.6
    X-Compile-Target-JDK: 1.6

    Name: javax/servlet/jsp/
    Specification-Title: Java API for JavaServer Pages
    Specification-Version: 2.2
    Specification-Vendor: Sun Microsystems, Inc.
    Implementation-Title: javax.servlet.jsp
    Implementation-Version: 2.2.FR
    Implementation-Vendor: Apache Software Foundation

    我的servlet版本是:

    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.8.2
    Created-By: 1.6.0_29-b11 (Sun Microsystems Inc.)
    X-Compile-Source-JDK: 1.6
    X-Compile-Target-JDK: 1.6

    Name: javax/servlet/
    Specification-Title: Java API for Servlets
    Specification-Version: 3.0
    Specification-Vendor: Sun Microsystems, Inc.
    Implementation-Title: javax.servlet
    Implementation-Version: 3.0.FR
    Implementation-Vendor: Apache Software Foundation

  • 相关阅读:
    最大流最小割——bzoj1001狼抓兔子,洛谷P2598
    求最小公因数和最大公倍数
    归并排序
    Splay
    Tarjan判断为什么不能把dfn写成low
    2-SAT问题
    离散数学-传递闭包(POJ3275)
    POJ3190
    安装环境gcc;
    二分折半排序
  • 原文地址:https://www.cnblogs.com/itcui/p/5884884.html
Copyright © 2011-2022 走看看