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 | # |
---|
17 | # List of comma-separated packages that start with or equal this string |
---|
18 | # will cause a security exception to be thrown when |
---|
19 | # passed to checkPackageAccess unless the |
---|
20 | # corresponding RuntimePermission ("accessClassInPackage."+package) has |
---|
21 | # been granted. |
---|
22 | package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.beans. |
---|
23 | # |
---|
24 | # List of comma-separated packages that start with or equal this string |
---|
25 | # will cause a security exception to be thrown when |
---|
26 | # passed to checkPackageDefinition unless the |
---|
27 | # corresponding RuntimePermission ("defineClassInPackage."+package) has |
---|
28 | # been granted. |
---|
29 | # |
---|
30 | # by default, no packages are restricted for definition, and none of |
---|
31 | # the class loaders supplied with the JDK call checkPackageDefinition. |
---|
32 | # |
---|
33 | package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper. |
---|
34 | |
---|
35 | # |
---|
36 | # |
---|
37 | # List of comma-separated paths defining the contents of the "common" |
---|
38 | # classloader. Prefixes should be used to define what is the repository type. |
---|
39 | # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute. |
---|
40 | # If left as blank,the JVM system loader will be used as Catalina's "common" |
---|
41 | # loader. |
---|
42 | # Examples: |
---|
43 | # "foo": Add this folder as a class repository |
---|
44 | # "foo/*.jar": Add all the JARs of the specified folder as class |
---|
45 | # repositories |
---|
46 | # "foo/bar.jar": Add bar.jar as a class repository |
---|
47 | common.loader=${catalina.home}/lib,${catalina.home}/lib/*.jar |
---|
48 | |
---|
49 | # |
---|
50 | # List of comma-separated paths defining the contents of the "server" |
---|
51 | # classloader. Prefixes should be used to define what is the repository type. |
---|
52 | # Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute. |
---|
53 | # If left as blank, the "common" loader will be used as Catalina's "server" |
---|
54 | # loader. |
---|
55 | # Examples: |
---|
56 | # "foo": Add this folder as a class repository |
---|
57 | # "foo/*.jar": Add all the JARs of the specified folder as class |
---|
58 | # repositories |
---|
59 | # "foo/bar.jar": Add bar.jar as a class repository |
---|
60 | server.loader= |
---|
61 | |
---|
62 | # |
---|
63 | # List of comma-separated paths defining the contents of the "shared" |
---|
64 | # classloader. Prefixes should be used to define what is the repository type. |
---|
65 | # Path may be relative to the CATALINA_BASE path or absolute. If left as blank, |
---|
66 | # the "common" loader will be used as Catalina's "shared" loader. |
---|
67 | # Examples: |
---|
68 | # "foo": Add this folder as a class repository |
---|
69 | # "foo/*.jar": Add all the JARs of the specified folder as class |
---|
70 | # repositories |
---|
71 | # "foo/bar.jar": Add bar.jar as a class repository |
---|
72 | # Please note that for single jars, e.g. bar.jar, you need the URL form |
---|
73 | # starting with file:. |
---|
74 | shared.loader= |
---|
75 | |
---|
76 | # |
---|
77 | # String cache configuration. |
---|
78 | tomcat.util.buf.StringCache.byte.enabled=true |
---|
79 | #tomcat.util.buf.StringCache.char.enabled=true |
---|
80 | #tomcat.util.buf.StringCache.trainThreshold=500000 |
---|
81 | #tomcat.util.buf.StringCache.cacheSize=5000 |
---|