⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jetty6pluginwebappcontext.java

📁 jetty SERVER連接資料庫用的軟體
💻 JAVA
字号:
//========================================================================//$Id: Jetty6PluginWebAppContext.java 3605 2008-09-04 10:24:54Z dyu $//Copyright 2006 Mort Bay Consulting Pty. Ltd.//------------------------------------------------------------------------//Licensed 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.mortbay.jetty.plugin;import java.io.File;import java.util.List;import org.mortbay.jetty.plus.webapp.EnvConfiguration;import org.mortbay.jetty.webapp.Configuration;import org.mortbay.jetty.webapp.JettyWebXmlConfiguration;import org.mortbay.jetty.webapp.TagLibConfiguration;import org.mortbay.jetty.webapp.WebAppContext;import org.mortbay.jetty.webapp.WebInfConfiguration;/** * Jetty6PluginWebAppContext * * */public class Jetty6PluginWebAppContext extends WebAppContext{    private List classpathFiles;    private File jettyEnvXmlFile;    private File webXmlFile;    private WebInfConfiguration webInfConfig = new WebInfConfiguration();    private EnvConfiguration envConfig =  new EnvConfiguration();    private Jetty6MavenConfiguration mvnConfig = new Jetty6MavenConfiguration();    private JettyWebXmlConfiguration jettyWebConfig = new JettyWebXmlConfiguration();    private TagLibConfiguration tagConfig = new TagLibConfiguration();    private Configuration[] configs = new Configuration[]{webInfConfig,envConfig, mvnConfig, jettyWebConfig, tagConfig};        public Jetty6PluginWebAppContext ()    {        super();        setConfigurations(configs);    }        public void setClassPathFiles(List classpathFiles)    {        this.classpathFiles = classpathFiles;    }    public List getClassPathFiles()    {        return this.classpathFiles;    }        public void setWebXmlFile(File webXmlFile)    {        this.webXmlFile = webXmlFile;    }        public File getWebXmlFile()    {        return this.webXmlFile;    }        public void setJettyEnvXmlFile (File jettyEnvXmlFile)    {        this.jettyEnvXmlFile = jettyEnvXmlFile;    }        public File getJettyEnvXmlFile()    {        return this.jettyEnvXmlFile;    }        public void configure ()    {                setConfigurations(configs);        mvnConfig.setClassPathConfiguration (classpathFiles);        mvnConfig.setWebXml (webXmlFile);          try        {            if (this.jettyEnvXmlFile != null)                envConfig.setJettyEnvXml(this.jettyEnvXmlFile.toURL());        }        catch (Exception e)        {            throw new RuntimeException(e);        }        /*        Configuration[] configurations = getConfigurations();        for (int i=0;i<configurations.length; i++)        {            if (configurations[i] instanceof Jetty6MavenConfiguration)            {                ((Jetty6MavenConfiguration)configurations[i]).setClassPathConfiguration (classpathFiles);                ((Jetty6MavenConfiguration)configurations[i]).setWebXml (webXmlFile);                          }            else if (configurations[i] instanceof EnvConfiguration)            {                try                {                    if (this.jettyEnvXmlFile != null)                        ((EnvConfiguration)configurations[i]).setJettyEnvXml(this.jettyEnvXmlFile.toURL());                }                catch (Exception e)                {                    throw new RuntimeException(e);                }            }        }        */    }    public void doStart () throws Exception    {        setShutdown(false);        super.doStart();    }         public void doStop () throws Exception    {        setShutdown(true);        //just wait a little while to ensure no requests are still being processed        Thread.currentThread().sleep(500L);        super.doStop();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -