/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
*/ package org.apache.jasper;
/** * Some constants and other global data that are used by the compiler and the runtime. * * @author Anil K. Vijendran * @author Harish Prabandham * @author Shawn Bayern * @author Mark Roth
*/ publicclass Constants {
publicstaticfinal String SPEC_VERSION = "3.1";
/** * These classes/packages are automatically imported by the * generated code.
*/ privatestaticfinal String[] PRIVATE_STANDARD_IMPORTS = { "jakarta.servlet.*", "jakarta.servlet.http.*", "jakarta.servlet.jsp.*"
}; publicstaticfinal List<String> STANDARD_IMPORTS =
Collections.unmodifiableList(Arrays.asList(PRIVATE_STANDARD_IMPORTS));
/** * Default size of the JSP buffer.
*/ publicstaticfinalint DEFAULT_BUFFER_SIZE = 8 * 1024;
/** * Default size for the tag buffers.
*/ publicstaticfinalint DEFAULT_TAG_BUFFER_SIZE = 512;
/** * Default tag handler pool size.
*/ publicstaticfinalint MAX_POOL_SIZE = 5;
/** * Has security been turned on?
*/ publicstaticfinalboolean IS_SECURITY_ENABLED =
(System.getSecurityManager() != null);
/** * Name of the system property containing * the tomcat product installation path
*/ publicstaticfinal String CATALINA_HOME_PROP = "catalina.home";
/** * Name of the ServletContext init-param that determines if the XML parsers * used for *.tld files will be validating or not. * <p> * This must be kept in sync with org.apache.catalina.Globals
*/ publicstaticfinal String XML_VALIDATION_TLD_INIT_PARAM = "org.apache.jasper.XML_VALIDATE_TLD";
/** * Name of the ServletContext init-param that determines if the XML parsers * will block the resolution of external entities. * <p> * This must be kept in sync with org.apache.catalina.Globals
*/ publicstaticfinal String XML_BLOCK_EXTERNAL_INIT_PARAM = "org.apache.jasper.XML_BLOCK_EXTERNAL";
/** * Name of the ServletContext init-param that determines the JSP * factory pool size. Set the value to a positive integer to enable it. * The default value is <code>8</code> per thread.
*/ publicstaticfinal String JSP_FACTORY_POOL_SIZE_INIT_PARAM = "org.apache.jasper.runtime.JspFactoryImpl.POOL_SIZE";
}
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.