📄 basejkconfig.java
字号:
/*
* 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.jk.config;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import org.apache.catalina.Container;
import org.apache.catalina.Context;
import org.apache.catalina.Engine;
import org.apache.catalina.Host;
import org.apache.catalina.Lifecycle;
import org.apache.catalina.LifecycleEvent;
import org.apache.catalina.LifecycleListener;
import org.apache.catalina.Server;
/**
Base class for automatic jk based configurations based on
the Tomcat server.xml settings and the war contexts
initialized during startup.
<p>
This config interceptor is enabled by inserting a Config
element in the <b><ContextManager></b> tag body inside
the server.xml file like so:
<pre>
* < ContextManager ... >
* ...
* <<b>???Config</b> <i>options</i> />
* ...
* < /ContextManager >
</pre>
where <i>options</i> can include any of the following attributes:
<ul>
<li><b>configHome</b> - default parent directory for the following paths.
If not set, this defaults to TOMCAT_HOME. Ignored
whenever any of the following paths is absolute.
</li>
<li><b>workersConfig</b> - path to workers.properties file used by
jk connector. If not set, defaults to
"conf/jk/workers.properties".</li>
<li><b>jkLog</b> - path to log file to be used by jk connector.</li>
<li><b>jkDebug</b> - Loglevel setting. May be debug, info, error, or emerg.
If not set, defaults to emerg.</li>
<li><b>jkWorker</b> The desired worker. Must be set to one of the workers
defined in the workers.properties file. "ajp12", "ajp13"
or "inprocess" are the workers found in the default
workers.properties file. If not specified, defaults
to "ajp13" if an Ajp13Interceptor is in use, otherwise
it defaults to "ajp12".</li>
<li><b>forwardAll</b> - If true, forward all requests to Tomcat. This helps
insure that all the behavior configured in the web.xml
file functions correctly. If false, let Apache serve
static resources. The default is true.
Warning: When false, some configuration in
the web.xml may not be duplicated in Apache.
Review the mod_jk conf file to see what
configuration is actually being set in Apache.</li>
<li><b>noRoot</b> - If true, the root context is not mapped to
Tomcat. If false and forwardAll is true, all requests
to the root context are mapped to Tomcat. If false and
forwardAll is false, only JSP and servlets requests to
the root context are mapped to Tomcat. When false,
to correctly serve Tomcat's root context you may also
need to modify the web server to point it's home
directory to Tomcat's root context directory.
Otherwise some content, such as the root index.html,
may be served by the web server before the connector
gets a chance to claim the request and pass it to Tomcat.
The default is true.</li>
</ul>
<p>
@author Costin Manolache
@author Larry Isaacs
@author Bill Barker
@version $Revision: 467222 $
*/
public class BaseJkConfig implements LifecycleListener {
private static org.apache.juli.logging.Log log =
org.apache.juli.logging.LogFactory.getLog(BaseJkConfig.class);
protected File configHome = null;
protected File workersConfig = null;
protected File jkLog = null;
protected String jkDebug="emerg";
protected String jkWorker = "ajp13";
protected boolean noRoot=true;
protected boolean forwardAll=true;
protected String tomcatHome;
protected boolean regenerate=false;
protected boolean append=false;
protected boolean legacy=true;
// -------------------- Tomcat callbacks --------------------
// Auto-config should be able to react to dynamic config changes,
// and regenerate the config.
/**
* Generate the configuration - only when the server is
* completely initialized ( before starting )
*/
public void lifecycleEvent(LifecycleEvent evt) {
if(Lifecycle.START_EVENT.equals(evt.getType())) {
execute( evt );
}
}
/**
* Generate configuration files. Override with method to generate
* web server specific configuration.
*/
public void execute(LifecycleEvent evt) {
initProperties();
PrintWriter mod_jk = null;
try {
mod_jk = getWriter();
} catch(IOException iex) {
log.warn("Unable to open config file");
return;
}
Lifecycle who = evt.getLifecycle();
if( who instanceof Server ) {
executeServer((Server)who, mod_jk);
} else if(who instanceof Engine) {
executeEngine((Engine)who, mod_jk);
} else if ( who instanceof Host ) {
executeHost((Host)who, mod_jk);
} else if( who instanceof Context ) {
executeContext((Context)who, mod_jk);
}
mod_jk.close();
}
/**
* Generate configuration files. Override with method to generate
* web server specific configuration.
*/
public void executeServer(Server svr, PrintWriter mod_jk) {
if(! append ) {
if( ! generateJkHead(mod_jk) )
return;
generateSSLConfig(mod_jk);
generateJkTail(mod_jk);
}
}
/**
* Generate SSL options
*/
protected void generateSSLConfig(PrintWriter mod_jk) {
}
/**
* Generate general options
*/
protected boolean generateJkHead(PrintWriter mod_jk) {
return true;
}
/**
* Generate general options
*/
protected void generateJkTail(PrintWriter mod_jk) {
}
/**
* Generate Virtual Host start
*/
protected void generateVhostHead(Host host, PrintWriter mod_jk) {
}
/**
* Generate Virtual Host end
*/
protected void generateVhostTail(Host host, PrintWriter mod_jk) {
}
/**
* Generate configuration files. Override with method to generate
* web server specific configuration.
*/
protected void executeEngine(Engine egn, PrintWriter mod_jk) {
if(egn.getJvmRoute() != null) {
jkWorker = egn.getJvmRoute();
}
executeServer(egn.getService().getServer(), mod_jk);
Container [] children = egn.findChildren();
for(int ii=0; ii < children.length; ii++) {
if( children[ii] instanceof Host ) {
executeHost((Host)children[ii], mod_jk);
} else if( children[ii] instanceof Context ) {
executeContext((Context)children[ii], mod_jk);
}
}
}
/**
* Generate configuration files. Override with method to generate
* web server specific configuration.
*/
protected void executeHost(Host hst, PrintWriter mod_jk) {
generateVhostHead(hst, mod_jk);
Container [] children = hst.findChildren();
for(int ii=0; ii < children.length; ii++) {
if(children[ii] instanceof Context) {
executeContext((Context)children[ii],mod_jk);
}
}
generateVhostTail(hst, mod_jk);
}
/**
* executes the ApacheConfig interceptor. This method generates apache
* configuration files for use with mod_jk.
* @param context a Context object.
* @param mod_jk Writer for output.
*/
public void executeContext(Context context, PrintWriter mod_jk){
if(context.getPath().length() > 0 || ! noRoot ) {
String docRoot = context.getServletContext().getRealPath("/");
if( forwardAll || docRoot == null)
generateStupidMappings( context, mod_jk );
else
generateContextMappings( context, mod_jk);
}
}
protected void generateStupidMappings(Context context, PrintWriter mod_jk){
}
protected void generateContextMappings(Context context, PrintWriter mod_jk){
}
/**
* Get the output Writer. Override with method to generate
* web server specific configuration.
*/
protected PrintWriter getWriter() throws IOException {
return null;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -