catalina.properties 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # List of comma-separated packages that start with or equal this string
  3. # will cause a security exception to be thrown when
  4. # passed to checkPackageAccess unless the
  5. # corresponding RuntimePermission ("accessClassInPackage."+package) has
  6. # been granted.
  7. package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.beans.
  8. #
  9. # List of comma-separated packages that start with or equal this string
  10. # will cause a security exception to be thrown when
  11. # passed to checkPackageDefinition unless the
  12. # corresponding RuntimePermission ("defineClassInPackage."+package) has
  13. # been granted.
  14. #
  15. # by default, no packages are restricted for definition, and none of
  16. # the class loaders supplied with the JDK call checkPackageDefinition.
  17. #
  18. package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.
  19. #
  20. #
  21. # List of comma-separated paths defining the contents of the "common"
  22. # classloader. Prefixes should be used to define what is the repository type.
  23. # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
  24. # If left as blank,the JVM system loader will be used as Catalina's "common"
  25. # loader.
  26. # Examples:
  27. # "foo": Add this folder as a class repository
  28. # "foo/*.jar": Add all the JARs of the specified folder as class
  29. # repositories
  30. # "foo/bar.jar": Add bar.jar as a class repository
  31. common.loader=${catalina.home}/common/classes,${catalina.home}/common/endorsed/*.jar,${catalina.home}/common/lib/*.jar
  32. #
  33. # List of comma-separated paths defining the contents of the "server"
  34. # classloader. Prefixes should be used to define what is the repository type.
  35. # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
  36. # If left as blank, the "common" loader will be used as Catalina's "server"
  37. # loader.
  38. # Examples:
  39. # "foo": Add this folder as a class repository
  40. # "foo/*.jar": Add all the JARs of the specified folder as class
  41. # repositories
  42. # "foo/bar.jar": Add bar.jar as a class repository
  43. server.loader=${catalina.home}/server/classes,${catalina.home}/server/lib/*.jar
  44. #
  45. # List of comma-separated paths defining the contents of the "shared"
  46. # classloader. Prefixes should be used to define what is the repository type.
  47. # Path may be relative to the CATALINA_BASE path or absolute. If left as blank,
  48. # the "common" loader will be used as Catalina's "shared" loader.
  49. # Examples:
  50. # "foo": Add this folder as a class repository
  51. # "foo/*.jar": Add all the JARs of the specified folder as class
  52. # repositories
  53. # "foo/bar.jar": Add bar.jar as a class repository
  54. shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar