亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? genericservlet.java

?? 圖書管理系統,用JSP實現,圖書的查詢,添加等功能
?? JAVA
字號:
/*
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 1999 The Apache Software Foundation.  All rights 
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The end-user documentation included with the redistribution, if
 *    any, must include the following acknowlegement:  
 *       "This product includes software developed by the 
 *        Apache Software Foundation (http://www.apache.org/)."
 *    Alternately, this acknowlegement may appear in the software itself,
 *    if and wherever such third-party acknowlegements normally appear.
 *
 * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
 *    Foundation" must not be used to endorse or promote products derived
 *    from this software without prior written permission. For written 
 *    permission, please contact apache@apache.org.
 *
 * 5. Products derived from this software may not be called "Apache"
 *    nor may "Apache" appear in their names without prior written
 *    permission of the Apache Group.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 *
 * ====================================================================
 *
 * This source code implements specifications defined by the Java
 * Community Process. In order to remain compliant with the specification
 * DO NOT add / change / or delete method signatures!
 */ 

package javax.servlet;

import java.io.IOException;
import java.util.Enumeration;

/**
 *
 * Defines a generic, protocol-independent
 * servlet. To write an HTTP servlet for use on the
 * Web, extend {@link javax.servlet.http.HttpServlet} instead.
 *
 * <p><code>GenericServlet</code> implements the <code>Servlet</code>
 * and <code>ServletConfig</code> interfaces. <code>GenericServlet</code>
 * may be directly extended by a servlet, although it's more common to extend
 * a protocol-specific subclass such as <code>HttpServlet</code>.
 *
 * <p><code>GenericServlet</code> makes writing servlets
 * easier. It provides simple versions of the lifecycle methods 
 * <code>init</code> and <code>destroy</code> and of the methods 
 * in the <code>ServletConfig</code> interface. <code>GenericServlet</code>
 * also implements the <code>log</code> method, declared in the
 * <code>ServletContext</code> interface. 
 *
 * <p>To write a generic servlet, you need only
 * override the abstract <code>service</code> method. 
 *
 *
 * @author 	Various
 * @version 	$Version$
 *
 *
 *
 */

 
public abstract class GenericServlet 
    implements Servlet, ServletConfig, java.io.Serializable
{

    private transient ServletConfig config;
    

    /**
     *
     * Does nothing. All of the servlet initialization
     * is done by one of the <code>init</code> methods.
     *
     */

    public GenericServlet() { }
    
    
    
   /**
     * Called by the servlet container to indicate to a servlet that the
     * servlet is being taken out of service.  See {@link Servlet#destroy}.
     *
     * 
     */

    public void destroy() {
	log("destroy");
    }
    
    
    
    /**
     * Returns a <code>String</code> containing the value of the named
     * initialization parameter, or <code>null</code> if the parameter does
     * not exist.  See {@link ServletConfig#getInitParameter}.
     *
     * <p>This method is supplied for convenience. It gets the 
     * value of the named parameter from the servlet's 
     * <code>ServletConfig</code> object.
     *
     * @param name 		a <code>String</code> specifying the name 
     *				of the initialization parameter
     *
     * @return String 		a <code>String</code> containing the value
     *				of the initalization parameter
     *
     */ 

    public String getInitParameter(String name) {
	return getServletConfig().getInitParameter(name);
    }
    
    

   /**
    * Returns the names of the servlet's initialization parameters 
    * as an <code>Enumeration</code> of <code>String</code> objects,
    * or an empty <code>Enumeration</code> if the servlet has no
    * initialization parameters.  See {@link
    * ServletConfig#getInitParameterNames}.
    *
    * <p>This method is supplied for convenience. It gets the 
    * parameter names from the servlet's <code>ServletConfig</code> object. 
    *
    *
    * @return Enumeration 	an enumeration of <code>String</code>
    *				objects containing the names of 
    *				the servlet's initialization parameters
    *
    */

    public Enumeration getInitParameterNames() {
	return getServletConfig().getInitParameterNames();
    }   
    
     
 
     

    /**
     * Returns this servlet's {@link ServletConfig} object.
     *
     * @return ServletConfig 	the <code>ServletConfig</code> object
     *				that initialized this servlet
     *
     */
    
    public ServletConfig getServletConfig() {
	return config;
    }
    
    
 
    
    /**
     * Returns a reference to the {@link ServletContext} in which this servlet
     * is running.  See {@link ServletConfig#getServletContext}.
     *
     * <p>This method is supplied for convenience. It gets the 
     * context from the servlet's <code>ServletConfig</code> object.
     *
     *
     * @return ServletContext 	the <code>ServletContext</code> object
     *				passed to this servlet by the <code>init</code>
     *				method
     *
     */

    public ServletContext getServletContext() {
	return getServletConfig().getServletContext();
    }



 

    /**
     * Returns information about the servlet, such as 
     * author, version, and copyright. 
     * By default, this method returns an empty string.  Override this method
     * to have it return a meaningful value.  See {@link
     * Servlet#getServletInfo}.
     *
     *
     * @return String 		information about this servlet, by default an
     * 				empty string
     *
     */
    
    public String getServletInfo() {
	return "";
    }




    /**
     *
     * Called by the servlet container to indicate to a servlet that the
     * servlet is being placed into service.  See {@link Servlet#init}.
     *
     * <p>This implementation stores the {@link ServletConfig}
     * object it receives from the servlet container for alter use.
     * When overriding this form of the method, call 
     * <code>super.init(config)</code>.
     *
     * @param config 			the <code>ServletConfig</code> object
     *					that contains configutation
     *					information for this servlet
     *
     * @exception ServletException 	if an exception occurs that
     *					interrupts the servlet's normal
     *					operation
     *
     * 
     * @see 				UnavailableException
     *
     */

    public void init(ServletConfig config) throws ServletException {
	this.config = config;
	log("init");
	this.init();
    }





    /**
     *
     * A convenience method which can be overridden so that there's no need
     * to call <code>super.init(config)</code>.
     *
     * <p>Instead of overriding {@link #init(ServletConfig)}, simply override
     * this method and it will be called by
     * <code>GenericServlet.init(ServletConfig config)</code>.
     * The <code>ServletConfig</code> object can still be retrieved via {@link
     * #getServletConfig}. 
     *
     * @exception ServletException 	if an exception occurs that
     *					interrupts the servlet's
     *					normal operation
     *
     */
    
    public void init() throws ServletException {

    }
    



    /**
     * 
     * Writes the specified message to a servlet log file, prepended by the
     * servlet's name.  See {@link ServletContext#log(String)}.
     *
     * @param msg 	a <code>String</code> specifying
     *			the message to be written to the log file
     *
     */
     
    public void log(String msg) {
	getServletContext().log(getServletName() + ": "+ msg);
    }
   
   
   
   
    /**
     * Writes an explanatory message and a stack trace
     * for a given <code>Throwable</code> exception
     * to the servlet log file, prepended by the servlet's name.
     * See {@link ServletContext#log(String, Throwable)}.
     *
     *
     * @param message 		a <code>String</code> that describes
     *				the error or exception
     *
     * @param t			the <code>java.lang.Throwable</code> error
     * 				or exception
     *
     *
     */
   
    public void log(String message, Throwable t) {
	getServletContext().log(getServletName() + ": " + message, t);
    }
    
    
    
    /**
     * Called by the servlet container to allow the servlet to respond to
     * a request.  See {@link Servlet#service}.
     * 
     * <p>This method is declared abstract so subclasses, such as 
     * <code>HttpServlet</code>, must override it.
     *
     *
     *
     * @param req 	the <code>ServletRequest</code> object
     *			that contains the client's request
     *
     * @param res 	the <code>ServletResponse</code> object
     *			that will contain the servlet's response
     *
     * @exception ServletException 	if an exception occurs that
     *					interferes with the servlet's
     *					normal operation occurred
     *
     * @exception IOException 		if an input or output
     *					exception occurs
     *
     */

    public abstract void service(ServletRequest req, ServletResponse res)
	throws ServletException, IOException;
    


    /**
     * Returns the name of this servlet instance.
     * See {@link ServletConfig#getServletName}.
     *
     * @return          the name of this servlet instance
     *
     *
     *
     */

    public String getServletName() {
        return config.getServletName();
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区三区日韩视频| 欧美激情在线观看视频免费| 久久久99免费| 亚洲综合色丁香婷婷六月图片| 美腿丝袜在线亚洲一区| 99久久国产免费看| 精品理论电影在线观看| 亚洲成人av一区二区| av动漫一区二区| 国产亚洲午夜高清国产拍精品| 亚洲国产综合色| 91极品美女在线| 国产精品色哟哟| 国产在线国偷精品产拍免费yy| 欧美日韩国产高清一区二区三区 | 国产精品美女久久久久久 | 国产精品一区二区男女羞羞无遮挡| 欧美又粗又大又爽| 亚洲色图视频免费播放| 成人美女在线观看| 久久综合九色综合欧美就去吻| 美国十次综合导航| 欧美精品日韩一区| 亚洲h动漫在线| 欧美亚洲尤物久久| 一区二区三区小说| 色八戒一区二区三区| 综合中文字幕亚洲| 色综合天天综合在线视频| 国产精品毛片大码女人| 成人蜜臀av电影| 国产精品欧美综合在线| jizz一区二区| 亚洲精品视频在线观看网站| 国产成人啪免费观看软件| 国产婷婷一区二区| www.亚洲激情.com| 亚洲美女一区二区三区| 91成人看片片| 性做久久久久久久免费看| 精品视频1区2区| 蜜桃视频在线观看一区| 精品国产成人在线影院 | 青青草国产精品亚洲专区无| 欧美一区二区三区男人的天堂| 首页欧美精品中文字幕| 欧美成人三级在线| 国产a精品视频| 亚洲美女免费视频| 3d动漫精品啪啪1区2区免费| 美腿丝袜一区二区三区| 亚洲国产精品成人综合 | aaa欧美色吧激情视频| 亚洲乱码精品一二三四区日韩在线 | 婷婷一区二区三区| 日韩久久免费av| 成人av网在线| 日日夜夜一区二区| 国产丝袜在线精品| 色婷婷综合久久久久中文一区二区| 亚洲成人av一区二区三区| 亚洲精品一区二区三区在线观看| 成人免费毛片片v| 亚洲成国产人片在线观看| 日韩欧美国产一区在线观看| 福利一区二区在线| 性感美女久久精品| 日本一区二区视频在线观看| 欧美亚洲丝袜传媒另类| 久久不见久久见免费视频7| 国产精品久久久久久久久久免费看| 欧美色爱综合网| 国产成人午夜高潮毛片| 午夜精品久久久久久不卡8050| 久久久91精品国产一区二区精品| 91国产成人在线| 粉嫩欧美一区二区三区高清影视| 亚洲成人一区在线| 欧美经典一区二区| 欧美一二三在线| 在线视频综合导航| 国产成a人无v码亚洲福利| 无码av免费一区二区三区试看| 亚洲国产精品v| 精品福利av导航| 制服视频三区第一页精品| 99久久99久久免费精品蜜臀| 精品无人区卡一卡二卡三乱码免费卡| 亚洲精品视频在线看| 国产欧美1区2区3区| 91精品国产91热久久久做人人| 色综合欧美在线| 国产1区2区3区精品美女| 蜜桃一区二区三区在线| 亚洲一区在线观看视频| 中文字幕一区二区不卡| 久久精品人人做人人爽97| 欧美一区二区在线视频| 欧美色爱综合网| 欧美丝袜自拍制服另类| 91年精品国产| 97se亚洲国产综合在线| 成人免费的视频| 国产成人在线网站| 国产美女精品人人做人人爽| 久久精品国产在热久久| 日韩电影免费在线观看网站| 亚洲一级电影视频| 亚洲一二三区不卡| 一区二区三区四区五区视频在线观看 | 亚洲丝袜精品丝袜在线| 中文字幕精品一区| 欧美激情一区二区三区不卡| 久久久久久久久久久黄色| 久久婷婷国产综合精品青草| 精品区一区二区| wwww国产精品欧美| 欧美激情综合在线| 亚洲日本在线视频观看| 国产精品久久久久久久裸模| 一色桃子久久精品亚洲| 亚洲欧美视频一区| 亚洲黄色尤物视频| 亚洲丶国产丶欧美一区二区三区| 亚洲韩国精品一区| 日本大胆欧美人术艺术动态| 日本视频免费一区| 国产一区二区三区久久悠悠色av| 国产精品亚洲第一区在线暖暖韩国 | 日本一区二区视频在线| 亚洲精品伦理在线| 亚洲成人av免费| 精品一区二区三区免费| 国产69精品久久777的优势| 色哟哟在线观看一区二区三区| 欧美三级电影精品| 精品欧美一区二区在线观看 | 亚洲精品在线三区| 亚洲欧洲成人av每日更新| 亚洲一区视频在线| 麻豆精品新av中文字幕| 成人免费视频caoporn| 欧美亚洲自拍偷拍| 欧美精品一区二区三区蜜桃 | 国产日韩欧美一区二区三区乱码| 亚洲欧洲av在线| 天天综合天天做天天综合| 国产毛片一区二区| 在线观看欧美精品| 国产亚洲美州欧州综合国| 亚洲免费视频中文字幕| 日韩激情中文字幕| 不卡视频一二三| 91精品在线麻豆| 国产精品人人做人人爽人人添| 五月激情综合婷婷| fc2成人免费人成在线观看播放 | 中文字幕av一区二区三区免费看| 美女视频黄a大片欧美| 国产不卡一区视频| 欧美日韩一区二区三区四区五区 | 日韩午夜中文字幕| ●精品国产综合乱码久久久久| 三级欧美在线一区| 99久久久久久| 欧美成人国产一区二区| 亚洲一线二线三线视频| 国产露脸91国语对白| 欧美日韩美女一区二区| 亚洲国产激情av| 久久精品国产免费| 欧美私模裸体表演在线观看| 国产精品乱码一区二区三区软件| 男人的天堂亚洲一区| 在线免费一区三区| 中文字幕日韩一区| 国产一区二区三区四| 欧美一区二区三区在线| 亚洲图片自拍偷拍| 色综合久久综合| 国产精品免费网站在线观看| 久久99精品国产麻豆婷婷 | 色狠狠桃花综合| 国产精品福利影院| 国产激情一区二区三区桃花岛亚洲| 制服丝袜亚洲精品中文字幕| 亚洲综合色区另类av| 一本色道综合亚洲| 1000部国产精品成人观看| 不卡的av中国片| 国产精品你懂的在线欣赏| 国产美女精品人人做人人爽| 亚洲精品在线免费播放| 精一区二区三区| 欧美不卡激情三级在线观看| 精品综合久久久久久8888| 久久综合九色欧美综合狠狠| 久久99热国产| 久久精品在线观看| 成人涩涩免费视频|