<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    江蘇520

    江蘇520

    常用鏈接

    統計

    最新評論

    Tomcat 6.0.20

    Tomcat是Apache 軟件基金會(Apache Software Foundation)的Jakarta 項目中的一個核心項目,由Apache、Sun 和其他一些公司及個人共同開發而成.由于有了Sun 的參與和支持,最新的Servlet 和JSP 規范總是能在Tomcat 中得到體現,因為Tomcat 技術先進、性能穩定,而且免費,因而深受Java 愛好者的喜愛并得到了部分軟件開發商的認可,成為目前比較流行的Web 應用服務器.Tomcat 很受廣大程序員的喜歡,因為它運行時占用的系統資源小,擴展性好,支持負載平衡與郵件服務等開發應用系統常用的功能;而且它還在不斷的改進和完善中,任何一個感興趣的程序員都可以更改它或在其中加入新的功能.

    下載:Tomcat 6.0.20

    Apache Tomcat Version 6.0.20
    Release Notes

    =============================
    KNOWN ISSUES IN THIS RELEASE:
    =============================

    * Dependency Changes
    * JNI Based Applications
    * Bundled APIs
    * Web application reloading and static fields in shared libraries
    * Tomcat on Linux
    * Enabling SSI and CGI Support
    * Security manager URLs
    * Symlinking static resources
    * Enabling invoker servlet
    * Viewing the Tomcat Change Log
    * When all else fails
    http://www.bt285.cn
    http://www.feng123.com
    ===================
    Dependency Changes:
    ===================
    Tomcat 6.0 is designed to run on JSE 5.0 and later.

    In addition, Tomcat 6.0 uses the Eclipse JDT Java compiler for compiling
    JSP pages. This means you no longer need to have the complete
    Java Development Kit (JDK) to run Tomcat, but a Java Runtime Environment
    (JRE) is sufficient. The Eclipse JDT Java compiler is bundled with the
    binary Tomcat distributions. Tomcat can also be configured to use the
    compiler from the JDK to compile JSPs, or any other Java compiler supported
    by Apache Ant.


    =======================
    JNI Based Applications:
    =======================
    Applications that require native libraries must ensure that the libraries have
    been loaded prior to use. Typically, this is done with a call like:

    static {
    System.loadLibrary("path-to-library-file");
    }

    in some class. However, the application must also ensure that the library is
    not loaded more than once. If the above code were placed in a class inside
    the web application (i.e. under /WEB-INF/classes or /WEB-INF/lib), and the
    application were reloaded, the loadLibrary() call would be attempted a second
    time.

    To avoid this problem, place classes that load native libraries outside of the
    web application, and ensure that the loadLibrary() call is executed only once
    during the lifetime of a particular JVM.


    =============
    Bundled APIs:
    =============
    A standard installation of Tomcat 6.0 makes all of the following APIs available
    for use by web applications (by placing them in "lib"):
    * annotations-api.jar (Annotations package)
    * catalina.jar (Tomcat Catalina implementation)
    * catalina-ant.jar (Tomcat Catalina Ant tasks)
    * catalina-ha.jar (High availability package)
    * catalina-tribes.jar (Group communication)
    * el-api.jar (EL 2.1 API)
    * jasper.jar (Jasper 2 Compiler and Runtime)
    * jasper-el.jar (Jasper 2 EL implementation)
    * jasper-jdt.jar (Eclipse JDT 3.3 Java compiler)
    * jsp-api.jar (JSP 2.1 API)
    * servlet-api.jar (Servlet 2.5 API)
    * tomcat-coyote.jar (Tomcat connectors and utility classes)
    * tomcat-dbcp.jar (package renamed database connection pool based on Commons DBCP)

    You can make additional APIs available to all of your web applications by
    putting unpacked classes into a "classes" directory (not created by default),
    or by placing them in JAR files in the "lib" directory.

    To override the XML parser implementation or interfaces, use the endorsed
    mechanism of the JVM. The default configuration defines JARs located in
    "endorsed" as endorsed.


    ================================================================
    Web application reloading and static fields in shared libraries:
    ================================================================
    Some shared libraries (many are part of the JDK) keep references to objects
    instantiated by the web application. To avoid class loading related problems
    (ClassCastExceptions, messages indicating that the classloader
    is stopped, etc.), the shared libraries state should be reinitialized.

    Something which might help is to avoid putting classes which would be
    referenced by a shared static field in the web application classloader,
    and putting them in the shared classloader instead (JARs should be put in the
    "lib" folder, and classes should be put in the "classes" folder).


    ================
    Tomcat on Linux:
    ================
    GLIBC 2.2 / Linux 2.4 users should define an environment variable:
    export LD_ASSUME_KERNEL=2.2.5

    Redhat Linux 9.0 users should use the following setting to avoid
    stability problems:
    export LD_ASSUME_KERNEL=2.4.1

    There are some Linux bugs reported against the NIO sendfile behavior, make sure you
    have a JDK that is up to date, or disable sendfile behavior in the Connector.<br/>
    6427312: (fc) FileChannel.transferTo() throws IOException "system call interrupted"<br/>
    5103988: (fc) FileChannel.transferTo should return -1 for EAGAIN instead throws IOException<br/>
    6253145: (fc) FileChannel.transferTo on Linux fails when going beyond 2GB boundary<br/>
    6470086: (fc) FileChannel.transferTo(2147483647, 1, channel) cause "Value too large" exception<br/>


    =============================
    Enabling SSI and CGI Support:
    =============================
    Because of the security risks associated with CGI and SSI available
    to web applications, these features are disabled by default.

    To enable and configure CGI support, please see the cgi-howto.html page.

    To enable and configue SSI support, please see the ssi-howto.html page.


    ======================
    Security manager URLs:
    ======================
    In order to grant security permissions to JARs located inside the
    web application repository, use URLs of of the following format
    in your policy file:

    file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar

    ============================
    Symlinking static resources:
    ============================
    By default, Unix symlinks will not work when used in a web application to link
    resources located outside the web application root directory.

    This behavior is optional, and the "allowLinking" flag may be used to disable
    the check.

    =========================
    Enabling invoker servlet:
    =========================
    Starting with Tomcat 4.1.12, the invoker servlet is no longer available by
    default in all webapps. Enabling it for all webapps is possible by editing
    $CATALINA_HOME/conf/web.xml to uncomment the "/servlet/*" servlet-mapping
    definition.

    Using the invoker servlet in a production environment is not recommended and
    is unsupported. More details are available on the Tomcat FAQ at
    http://tomcat.apache.org/faq/misc.html#invoker.

    ==============================
    Viewing the Tomcat Change Log:
    ==============================
    See changelog.html in this directory.

    ====================
    When all else fails:
    ====================
    See the FAQ
    http://tomcat.apache.org/faq/

    posted on 2009-05-17 20:12 江蘇520 閱讀(1504) 評論(0)  編輯  收藏

    主站蜘蛛池模板: 日本一区午夜艳熟免费| 亚洲免费在线视频| 好男人视频社区精品免费| 久久国内免费视频| 日本免费一区二区三区最新vr| 破了亲妺妺的处免费视频国产| 亚洲日韩人妻第一页| 亚洲av日韩综合一区在线观看| 亚洲成_人网站图片| 一级日本高清视频免费观看| 日韩成人免费视频| 蜜臀91精品国产免费观看| 亚洲成在人线在线播放无码| 成人精品一区二区三区不卡免费看| 国产亚洲日韩一区二区三区| 国产成人精品日本亚洲专| 最近的2019免费中文字幕| 成人免费一区二区三区在线观看| 亚洲欧洲日产国码av系列天堂| 亚洲人av高清无码| 亚洲高清视频免费| 亚洲区小说区图片区| 亚洲一级特黄特黄的大片| 日本高清免费不卡视频| 一个人免费观看www视频| 亚洲AV永久无码区成人网站| 理论秋霞在线看免费| 日本免费一区二区在线观看 | av大片在线无码免费| 久久九九亚洲精品| kk4kk免费视频毛片| 日韩成人在线免费视频| 日日狠狠久久偷偷色综合免费| 日韩毛片无码永久免费看| 国产精品永久免费| 91嫩草亚洲精品| 人妻无码一区二区三区免费| 国产亚洲av片在线观看18女人| 美女免费精品高清毛片在线视| 久久亚洲国产午夜精品理论片| 免费AA片少妇人AA片直播|