RELEASE-NOTES
上传用户:zhangkaihu
上传日期:2008-02-20
资源大小:3690k
文件大小:6k
源码类别:

Web服务器

开发平台:

Java

  1.                      Apache Tomcat Version @VERSION@
  2.                             Release Notes
  3. $Id: RELEASE-NOTES,v 1.25 2005/01/19 20:30:26 remm Exp $
  4. =============================
  5. KNOWN ISSUES IN THIS RELEASE:
  6. =============================
  7. * Dependency Changes
  8. * JNI Based Applications
  9. * Bundled APIs
  10. * Web application reloading and static fields in shared libraries
  11. * Tomcat on Linux
  12. * Enabling SSI and CGI Support
  13. * Security manager URLs
  14. * Symlinking static resources
  15. * Enabling invoker servlet
  16. * Viewing the Tomcat Change Log
  17. * When all else fails
  18. ===================
  19. Dependency Changes:
  20. ===================
  21. Tomcat 5.5 is designed to run on J2SE 5.0 and later, and requires
  22. configuration to run on J2SE 1.4.  Make sure to read the "RUNNING.txt" 
  23. file in this directory if you are using J2SE 1.4.
  24. In addition, Tomcat 5.5 uses the Eclipse JDT Java compiler for compiling
  25. JSP pages.  This means you no longer need to have the complete
  26. Java Development Kit (JDK) to run Tomcat, but a Java Runtime Environment
  27. (JRE) is sufficient.  The Eclipse JDT Java compiler is bundled with the 
  28. binary Tomcat distributions.  Tomcat can also be configured to use the
  29. compiler from the JDK to compile JSPs, or any other Java compiler supported 
  30. by Apache Ant.
  31. =======================
  32. JNI Based Applications:
  33. =======================
  34. Applications that require native libraries must ensure that the libraries have
  35. been loaded prior to use.  Typically, this is done with a call like:
  36.   static {
  37.     System.loadLibrary("path-to-library-file");
  38.   }
  39. in some class.  However, the application must also ensure that the library is
  40. not loaded more than once.  If the above code were placed in a class inside
  41. the web application (i.e. under /WEB-INF/classes or /WEB-INF/lib), and the
  42. application were reloaded, the loadLibrary() call would be attempted a second
  43. time.
  44. To avoid this problem, place classes that load native libraries outside of the
  45. web application, and ensure that the loadLibrary() call is executed only once
  46. during the lifetime of a particular JVM.
  47. =============
  48. Bundled APIs:
  49. =============
  50. A standard installation of Tomcat 5.5 makes all of the following APIs available
  51. for use by web applications (by placing them in "common/lib" or "shared/lib"):
  52. * commons-el.jar (Commons Expression Language 1.0)
  53. * commons-logging-api.jar (Commons Logging API 1.0.x)
  54. * jasper-compiler.jar (Jasper 2 Compiler)
  55. * jasper-compiler-jdt.jar (Eclipse JDT Java compiler)
  56. * jasper-runtime.jar (Jasper 2 Runtime)
  57. * jsp-api.jar (JSP 2.0 API)
  58. * naming-common.jar (JNDI Context implementation)
  59. * naming-factory.jar (JNDI object factories for J2EE ENC support)
  60. * naming-factory-dbcp.jar (DataSource implementation based on commons-dbcp)
  61. * naming-resources.jar (JNDI DirContext implementations)
  62. * servlet-api.jar (Servlet 2.4 API)
  63. Installing the compatibility package will add the following to the list, which are
  64. needed when running on J2SE 1.4:
  65. * jmx.jar (Java Management Extensions API 1.2 or later)
  66. * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
  67. You can make additional APIs available to all of your web applications by
  68. putting unpacked classes into a "classes" directory (not created by default),
  69. or by placing them in JAR files in the "lib" directory.
  70. To override the XML parser implementation or interfaces, use the endorsed
  71. mechanism of the JVM. The default configuration defines JARs located in 
  72. "common/endorsed" as endorsed.
  73. ================================================================
  74. Web application reloading and static fields in shared libraries:
  75. ================================================================
  76. Some shared libraries (many are part of the JDK) keep references to objects
  77. instantiated by the web application. To avoid class loading related problems
  78. (ClassCastExceptions, messages indicating that the classloader
  79. is stopped, etc.), the shared libraries state should be reinitialized.
  80. Something which might help is to avoid putting classes which would be
  81. referenced by a shared static field in the web application classloader,
  82. and putting them in the shared classloader instead (JARs should be put in the
  83. "lib" folder, and classes should be put in the "classes" folder).
  84. ================
  85. Tomcat on Linux:
  86. ================
  87. GLIBC 2.2 / Linux 2.4 users should define an environment variable:
  88. export LD_ASSUME_KERNEL=2.2.5
  89. Redhat Linux 9.0 users should use the following setting to avoid
  90. stability problems:
  91. export LD_ASSUME_KERNEL=2.4.1
  92. =============================
  93. Enabling SSI and CGI Support:
  94. =============================
  95. Because of the security risks associated with CGI and SSI available
  96. to web applications, these features are disabled by default.  
  97. To enable and configure CGI support, please see the cgi-howto.html page.
  98. To enable and configue SSI support, please see the ssi-howto.html page.
  99. ======================
  100. Security manager URLs:
  101. ======================
  102. In order to grant security permissions to JARs located inside the
  103. web application repository, use URLs of of the following format
  104. in your policy file:
  105. file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar
  106. ============================
  107. Symlinking static resources:
  108. ============================
  109. By default, Unix symlinks will not work when used in a web application to link
  110. resources located outside the web application root directory.
  111. This behavior is optional, and the "allowLinking" flag may be used to disable
  112. the check.
  113. =========================
  114. Enabling invoker servlet:
  115. =========================
  116. Starting with Tomcat 4.1.12, the invoker servlet is no longer available by
  117. default in all webapps. Enabling it for all webapps is possible by editing
  118. $CATALINA_HOME/conf/web.xml to uncomment the "/servlet/*" servlet-mapping
  119. definition.
  120. Using the invoker servlet in a production environment is not recommended and
  121. is unsupported.  More details are available on the Tomcat FAQ at
  122. http://jakarta.apache.org/tomcat/faq/misc.html#invoker.
  123. ==============================
  124. Viewing the Tomcat Change Log:
  125. ==============================
  126. See changelog.html in this directory.
  127. ====================
  128. When all else fails:
  129. ====================
  130. See the FAQ
  131. http://jakarta.apache.org/tomcat/faq/