catalina.properties
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements.  See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License.  You may obtain a copy of the License at
  7. #
  8. #     http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # List of comma-separated packages that start with or equal this string
  17. # will cause a security exception to be thrown when
  18. # passed to checkPackageAccess unless the
  19. # corresponding RuntimePermission ("accessClassInPackage."+package) has
  20. # been granted.
  21. package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.beans.
  22. #
  23. # List of comma-separated packages that start with or equal this string
  24. # will cause a security exception to be thrown when
  25. # passed to checkPackageDefinition unless the
  26. # corresponding RuntimePermission ("defineClassInPackage."+package) has
  27. # been granted.
  28. #
  29. # by default, no packages are restricted for definition, and none of
  30. # the class loaders supplied with the JDK call checkPackageDefinition.
  31. #
  32. package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.
  33. #
  34. #
  35. # List of comma-separated paths defining the contents of the "common" 
  36. # classloader. Prefixes should be used to define what is the repository type.
  37. # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
  38. # If left as blank,the JVM system loader will be used as Catalina's "common" 
  39. # loader.
  40. # Examples:
  41. #     "foo": Add this folder as a class repository
  42. #     "foo/*.jar": Add all the JARs of the specified folder as class 
  43. #                  repositories
  44. #     "foo/bar.jar": Add bar.jar as a class repository
  45. common.loader=${catalina.home}/common/classes,${catalina.home}/common/i18n/*.jar,${catalina.home}/common/endorsed/*.jar,${catalina.home}/common/lib/*.jar
  46. #
  47. # List of comma-separated paths defining the contents of the "server" 
  48. # classloader. Prefixes should be used to define what is the repository type.
  49. # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
  50. # If left as blank, the "common" loader will be used as Catalina's "server" 
  51. # loader.
  52. # Examples:
  53. #     "foo": Add this folder as a class repository
  54. #     "foo/*.jar": Add all the JARs of the specified folder as class 
  55. #                  repositories
  56. #     "foo/bar.jar": Add bar.jar as a class repository
  57. server.loader=${catalina.home}/server/classes,${catalina.home}/server/lib/*.jar
  58. #
  59. # List of comma-separated paths defining the contents of the "shared" 
  60. # classloader. Prefixes should be used to define what is the repository type.
  61. # Path may be relative to the CATALINA_BASE path or absolute. If left as blank,
  62. # the "common" loader will be used as Catalina's "shared" loader.
  63. # Examples:
  64. #     "foo": Add this folder as a class repository
  65. #     "foo/*.jar": Add all the JARs of the specified folder as class 
  66. #                  repositories
  67. #     "foo/bar.jar": Add bar.jar as a class repository 
  68. # Please note that for individual jar files, e.g. bar.jar, you need the URL form
  69. # starting with file:.
  70. shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
  71. #
  72. # String cache configuration.
  73. tomcat.util.buf.StringCache.byte.enabled=true
  74. #tomcat.util.buf.StringCache.char.enabled=true
  75. #tomcat.util.buf.StringCache.trainThreshold=500000
  76. #tomcat.util.buf.StringCache.cacheSize=5000