久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > java >内容正文

java

java servlet_Java Servlet的前100个问题

發(fā)布時間:2023/12/3 java 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java servlet_Java Servlet的前100个问题 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

java servlet

1)是“ servlets”目錄還是“ servlet”目錄?

回答:

對于Java Web Server:

  • 在文件系統(tǒng)上,它是“ servlet”

    c:\ JavaWebServer1.1 \ servlets \ DateServlet.class

  • 在URL路徑中,它是“ servlet”: http : //www.stinky.com/servlet/DateServlet

2)如何從同一個Servlet支持GET和POST協(xié)議?

回答:

簡單的方法是,僅支持POST,然后讓您的doGet方法調(diào)用您的doPost方法:

public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException{doPost(req, res);}

3)如何確保我的servlet是線程安全的?

回答:

這實(shí)際上是一個非常復(fù)雜的問題。 一些準(zhǔn)則:

  • 確保在加載servlet時每個servlet實(shí)例調(diào)用一次init()方法。 您不必?fù)?dān)心該方法內(nèi)部的線程安全,因?yàn)樗鼉H由單個線程調(diào)用,并且Web服務(wù)器將等待該線程退出,然后再將更多線程發(fā)送到service()方法中。
  • 每個新的客戶端請求都會生成(或分配)一個新線程; 該線程調(diào)用servlet的service()方法(依次調(diào)用doPost(),doGet()等)。
  • 在大多數(shù)情況下,無論正在處理多少個客戶端請求,您的servlet都只有一個實(shí)例。 這意味著在任何給定的時刻,您的單獨(dú)實(shí)例的service()方法中可能運(yùn)行著許多線程,所有線程共享同一實(shí)例數(shù)據(jù),并且有可能踩到彼此的腳趾。 這意味著您應(yīng)該小心使用synced關(guān)鍵字同步對共享數(shù)據(jù)(實(shí)例變量)的訪問。
  • (請注意,如果您使用新名稱(例如新的init參數(shù))注冊servlet,服務(wù)器還將分配新的實(shí)例。)

  • 請注意,您不必(也不應(yīng))在本地?cái)?shù)據(jù)或參數(shù)上同步。 特別是您不應(yīng)該同步service()方法! (或doPost(),doGet()等。)
  • 同步的一種簡單解決方案是始終使用“已同步(this){…}”在servlet實(shí)例本身上進(jìn)行同步。 但是,這可能會導(dǎo)致性能瓶頸。 通常最好在數(shù)據(jù)對象本身上進(jìn)行同步。
  • 如果您絕對不能處理同步,則可以聲明您的servlet“實(shí)現(xiàn)SingleThreadModel”。 這個空接口告訴Web服務(wù)器一次只向您的Servlet發(fā)送一個客戶端請求。 從JavaDoc: “如果目標(biāo)servlet用該接口標(biāo)記,則servlet程序員保證沒有兩個線程將同時執(zhí)行該servlet的服務(wù)方法。 通過為每個此類servlet維護(hù)一個servlet實(shí)例池,并將每個服務(wù)調(diào)用分派給一個免費(fèi)的servlet,來確保這一保證。 本質(zhì)上,如果該servlet實(shí)現(xiàn)該接口,則該servlet將是線程安全的。 請注意,這不是理想的解決方案,因?yàn)樾阅芸赡軙艿接绊?#xff08;取決于實(shí)例池的大小),而且跨實(shí)例共享數(shù)據(jù)比在單個實(shí)例中共享更加困難。
  • 另請參閱啟用線程安全的servlet和JSP的更好方法是什么? SingleThreadModel接口還是同步?

  • 要在連續(xù)或并發(fā)請求中共享數(shù)據(jù),可以使用實(shí)例變量或類靜態(tài)變量,也可以使用會話跟蹤。
  • destroy()方法不一定像init()方法那樣干凈。 服務(wù)器調(diào)用銷毀或者所有的服務(wù)電話都完成后, 或幾秒鐘的一定數(shù)目的通過后,以先到者為準(zhǔn)。 這意味著其他線程可能在調(diào)用destroy()方法的同時正在運(yùn)行服務(wù)請求! 因此,請確保同步和/或等待其他請求退出。 Sun的Servlet教程提供了一個如何使用引用計(jì)數(shù)進(jìn)行操作的示例。
  • destroy()不能引發(fā)異常,因此,如果發(fā)生嚴(yán)重問題,請使用有用的消息(如異常)調(diào)用log()。 請參見“關(guān)閉JDBC連接”。 Sun教程中的示例。
  • 4)URL編碼,URL重寫,HTML轉(zhuǎn)義和實(shí)體編碼之間有什么區(qū)別?

    回答:

    URL編碼
    是將用戶輸入轉(zhuǎn)換為CGI表單的過程,因此適合于跨網(wǎng)絡(luò)旅行-基本上是刪除空格和標(biāo)點(diǎn)符號,并以轉(zhuǎn)義字符代替。 URL解碼是相反的過程。 要執(zhí)行這些操作,請調(diào)用java.net.URLEncoder.encode()和java.net.URLDecoder.decode()(后者已(最終!)添加到了JDK 1.2(又名Java 2)中)。

    例:

    更改“我們是第一!” 變成“我們%27re +%231%21”

    URL重寫
    是一種在兩次頁面點(diǎn)擊之間將狀態(tài)信息保存在用戶瀏覽器上的技術(shù)。 有點(diǎn)像cookie,只是信息被存儲在URL中,作為附加參數(shù)。 HttpSession API是Servlet API的一部分,有時在cookie不可用時會使用URL重寫。

    例:

    將<A HREF=”nextpage.html”>更改為

    <A HREF=”nextpage.html;$sessionid$=DSJFSDKFSLDFEEKOE”>(或?qū)嶋H語法是什么;我忘記了)(不幸的是,Servlet API中用于為會話管理進(jìn)行URL重寫的方法稱為encodeURL()。嘆…)

    Apache Web服務(wù)器還有一個名為URL Rewriting的功能。 它由mod_rewrite模塊啟用。 它會在進(jìn)入服務(wù)器的過程中重寫URL,從而使您可以執(zhí)行以下操作,例如將斜杠自動添加到目錄名,或?qū)⑴f文件名映射到新文件名。 這與servlet無關(guān)。

    5)如何將文件上傳到我的servlet或JSP?

    回答:

    在客戶端,客戶端的瀏覽器必須支持基于表單的上傳。 大多數(shù)現(xiàn)代瀏覽器都可以,但是不能保證。 例如,

    <FORM ENCTYPE='multipart/form-data' method='POST' action='/myservlet'><INPUT TYPE='file' NAME='mptest'><INPUT TYPE='submit' VALUE='upload'></FORM>

    輸入類型“文件”被指定為“文件”。 會在瀏覽器上彈出一個用于文件選擇框的按鈕,并帶有一個文本字段,該文本字段一旦選定即取文件名。 當(dāng)請求的POST正文包含要解析的文件數(shù)據(jù)時,Servlet可以使用GET方法參數(shù)來決定如何處理上傳。

    當(dāng)用戶單擊“上傳”按鈕時,客戶端瀏覽器將找到本地文件并使用HTTP POST發(fā)送該文件,該文件使用MIME類型的multipart / form-data進(jìn)行編碼。 當(dāng)它到達(dá)您的servlet時,您的servlet必須處理POST數(shù)據(jù)以便提取編碼的文件。 您可以在RFC 1867中了解有關(guān)此格式的所有信息。

    不幸的是,Servlet API中沒有方法可以做到這一點(diǎn)。 幸運(yùn)的是,有許多可用的庫。 其中一些假設(shè)您將把文件寫入磁盤。 其他人將數(shù)據(jù)作為InputStream返回。

    • Jason Hunter的MultipartRequest (可從http://www.servlets.com/獲得 )
    • Apache Jakarta Commons Upload (軟件包org.apache.commons.upload)“使向Servlet和Web應(yīng)用程序添加強(qiáng)大的高性能文件上傳功能變得容易”
    • CParseRFC1867(可從http://www.servletcentral.com/獲得 )。
    • Anav Hemrajani的HttpMultiPartParser ,在isavvix代碼交換處
    • 在http:// www-的 Anders Kristensen( http://www-uk.hpl.hp.com/people/ak/java/ ak@hplb.hpl.hp.com )上有一個multipart / form解析器。 uk.hpl.hp.com/people/ak/java/#utils 。
    • JavaMail還具有MIME解析例程(請參見Purple Servlet References )。
    • Jun Inamori編寫了一個名為org.apache.tomcat.request.ParseMime的類,該類在Tomcat CVS樹中可用。
    • JSPSmart提供了一組免費(fèi)的JSP,用于執(zhí)行文件上傳和下載。
    • JavaZoom的UploadBean聲稱可以為您處理大部分的上傳麻煩,包括寫入磁盤或內(nèi)存。
    • dotJ中有一個上傳標(biāo)簽

    將表單數(shù)據(jù)流處理為上載的文件后,您可以根據(jù)需要將其寫入磁盤,將其寫入數(shù)據(jù)庫或作為InputStream處理。 請參閱如何從servlet內(nèi)部訪問或在當(dāng)前目錄中創(chuàng)建文件或文件夾? Servlets:Files主題中的其他問題以及有關(guān)從Servlet寫入文件的信息。

    請注意 ,您不能直接從servlet訪問客戶端系統(tǒng)上的文件; 那將是一個巨大的安全漏洞。 您必須征詢用戶的許可,當(dāng)前基于表單的上傳是唯一的方式。

    6)servlet如何與JSP頁面通信?

    回答:

    以下代碼段顯示了servlet如何實(shí)例化bean并使用瀏覽器發(fā)布的FORM數(shù)據(jù)對其進(jìn)行初始化。 然后將bean放入請求中,然后通過請求分派器將調(diào)用轉(zhuǎn)發(fā)到JSP頁面Bean1.jsp,以進(jìn)行下游處理。

    public void doPost (HttpServletRequest request,HttpServletResponse response) {try {govi.FormBean f = new govi.FormBean();String id = request.getParameter("id");f.setName(request.getParameter("name"));f.setAddr(request.getParameter("addr"));f.setAge(request.getParameter("age"));//use the id to compute//additional bean properties like info//maybe perform a db query, etc.// . . .f.setPersonalizationInfo(info);request.setAttribute("fBean",f);getServletConfig().getServletContext().getRequestDispatcher("/jsp/Bean1.jsp").forward(request, response);} catch (Exception ex) {. . .}}

    在首先通過useBean操作從默認(rèn)請求范圍中提取fBean之后,JSP頁面Bean1.jsp可以處理fBean。

    <jsp:useBean id="fBean" class="govi.FormBean" scope="request"/><jsp:getProperty name="fBean" property="name" /><jsp:getProperty name="fBean" property="addr" /><jsp:getProperty name="fBean" property="age" /><jsp:getProperty name="fBean" property="personalizationInfo" />

    SingleThreadModel接口還是同步?

    回答:

    盡管SingleThreadModel技術(shù)易于使用,并且在低容量站點(diǎn)上效果很好,但是它的伸縮性不好。 如果您希望用戶將來會增加,那么最好對共享數(shù)據(jù)實(shí)施顯式同步。 但是,關(guān)鍵是有效地最小化已同步的代碼量,以便最大程度地利用多線程。

    另外,請注意,從服務(wù)器的角度來看,SingleThreadModel占用大量資源。 但是,最嚴(yán)重的問題是并發(fā)請求數(shù)耗盡了servlet實(shí)例池。 在這種情況下,所有未服務(wù)的請求都將排隊(duì)等待,直到有空閑的東西為止–這會導(dǎo)致性能下降。 由于使用情況不確定,因此即使您確實(shí)增加了內(nèi)存并增加了實(shí)例池的大小,也可能無濟(jì)于事。

    8)一個servlet可以在多個servlet調(diào)用之間維護(hù)JTA UserTransaction對象嗎?

    回答:

    不能。JTA事務(wù)必須在一次調(diào)用(對service()方法)中開始和完成。 請注意,此問題并未解決維護(hù)和操作JDBC連接(包括連接的事務(wù)處理)的servlet。

    它與Perl腳本相比如何?

    回答:

    JSP頁面的性能非常接近servlet。 但是,當(dāng)?shù)谝淮卧L問JSP頁面時,用戶可能會遇到明顯的延遲。 這是因?yàn)镴SP頁面經(jīng)歷了“翻譯階段”,在此階段,JSP頁面將其轉(zhuǎn)換為servlet。 一旦該Servlet被動態(tài)編譯并加載到內(nèi)存中,它就會遵循Servlet生命周期進(jìn)行請求處理。 在此,JSP引擎在加載servlet時會自動調(diào)用jspInit()方法,然后是_jspService()方法,該方法負(fù)責(zé)處理請求并回復(fù)客戶端。 請注意,此Servlet的生存期是不確定的–出于資源相關(guān)的原因,JSP引擎可隨時將其從內(nèi)存中刪除。 發(fā)生這種情況時,JSP引擎會自動調(diào)用jspDestroy()方法,從而允許Servlet釋放任何先前分配的資源。

    只要Servlet緩存在內(nèi)存中,隨后對JSP頁面的客戶端請求就不會重復(fù)轉(zhuǎn)換階段,而是由Servlet的service()方法以并發(fā)方式直接處理(即,service()方法處理每個客戶請求同時在單獨(dú)的線程中)。

    最近有一些研究將Servlet的性能與在“真實(shí)”環(huán)境中運(yùn)行的Perl腳本進(jìn)行了對比。 結(jié)果對Servlet有利,尤其是當(dāng)它們在集群環(huán)境中運(yùn)行時。

    10)如何從另一個servlet調(diào)用一個servlet?

    回答:

    [簡短答案:有幾種方法可以做到這一點(diǎn),包括

    • 使用RequestDispatcher
    • 使用URLConnection或HTTPClient
    • 發(fā)送重定向
    • 調(diào)用getServletContext()。getServlet(name)(不建議使用,在2.1+版本中不起作用)

    –亞歷克斯]

    這取決于您所說的“通話”的含義,您想要做什么以及為什么要這么做。

    如果最終的結(jié)果是調(diào)用方法,那么最簡單的機(jī)制就是將servlet像任何java對象一樣對待,創(chuàng)建一個實(shí)例并調(diào)用該方法。

    如果想法是從另一個servlet的服務(wù)方法中調(diào)用服務(wù)方法,即轉(zhuǎn)發(fā)請求,則可以使用RequestDispatcher對象。

    但是,如果要訪問由servlet引擎加載到內(nèi)存中的servlet實(shí)例,則必須知道servlet的別名。 (如何定義它取決于引擎。)例如,要在JSDK中調(diào)用servlet,可以通過該屬性來命名servlet。

    myname.code=com.sameer.servlets.MyServlet

    下面的代碼顯示了如何在另一個servlet的service方法中訪問這個命名的servlet。

    public void service (HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {...MyServlet ms=(MyServlet) getServletConfig().getServletContext().getServlet("myname");...}

    就是說,由于安全性問題,在Servlet API的2.1版本中已棄用了在另一個Servlet中訪問Servlet的整個方法。 更干凈,更好的方法是避免直接訪問其他servlet,而使用RequestDispatcher。

    (例如Web服務(wù)器,應(yīng)用程序服務(wù)器等)

    回答:

    涉及處理和處理用戶請求的服務(wù)器分為幾種基本類型,每種基本類型都可以解決一個或多個任務(wù)。 這種靈活性為開發(fā)人員提供了在如何創(chuàng)建和部署應(yīng)用程序方面的強(qiáng)大功能,但也導(dǎo)致對服務(wù)器能夠或應(yīng)該執(zhí)行特定任務(wù)的困惑。

    從基本級別開始,用戶通常是通過Web瀏覽器向系統(tǒng)提交請求。 (為了清楚起見,我們暫時忽略了所有其他類型的客戶端(RMI,CORBA,COM / DCOM,自定義等)。)Web請求必須由Web服務(wù)器接收(否則稱為Web服務(wù)器)。 HTTP Server )。 該Web服務(wù)器必須處理標(biāo)準(zhǔn)的HTTP請求和響應(yīng),通常將HTML返回給調(diào)用用戶。 在服務(wù)器環(huán)境中執(zhí)行的代碼可能是CGI驅(qū)動的,Servlet,ASP或某些其他服務(wù)器端編程語言,但是最終結(jié)果是Web服務(wù)器將HTML返回給用戶。

    Web服務(wù)器可能需要響應(yīng)用戶請求執(zhí)行應(yīng)用程序。 它可能正在生成新聞列表,或者處理向訪客留言簿的表單提交。 如果服務(wù)器應(yīng)用程序是用Java Servlet編寫的,它將需要一個執(zhí)行位置,該位置通常稱為Servlet Engine 。 取決于Web服務(wù)器,此引擎可以是內(nèi)部,外部或完全不同的產(chǎn)品。 該引擎一直在運(yùn)行,這與傳統(tǒng)的CGI環(huán)境不同,在傳統(tǒng)的CGI環(huán)境中,每次向服務(wù)器發(fā)出請求時都會啟動CGI腳本。 這種持久性提供了Servlet連接和線程池,以及維護(hù)每個HTTP請求之間狀態(tài)的簡便方法。 JSP頁面通常與servlet引擎綁定在一起,并且將在與servlet相同的空間/應(yīng)用程序中執(zhí)行。

    有許多產(chǎn)品以不同的方式處理Web服務(wù)和Servlet引擎。 Netscape / iPlanet Enterprise Server將Servlet引擎直接構(gòu)建到Web服務(wù)器中,并在同一進(jìn)程空間中運(yùn)行。 Apache要求Servlet引擎在外部進(jìn)程中運(yùn)行,并且將通過TCP / IP套接字與該引擎進(jìn)行通信。 其他服務(wù)器(例如MS IIS)并不正式支持servlet,并且需要附加產(chǎn)品才能添加該功能。

    當(dāng)您繼續(xù)使用Enterprise JavaBeans(以及其他J2EE組件,例如JMS和CORBA)時,您將進(jìn)入應(yīng)用程序服務(wù)器空間。 應(yīng)用程序服務(wù)器是任何提供與企業(yè)計(jì)算相關(guān)的附加功能的服務(wù)器,例如,負(fù)載平衡,數(shù)據(jù)庫訪問類,事務(wù)處理,消息傳遞等。

    EJB應(yīng)用服務(wù)器提供了一個EJB容器,bean將在該容器中執(zhí)行該環(huán)境,并且該容器將根據(jù)需要管理事務(wù),線程池和其他問題。 這些應(yīng)用程序服務(wù)器通常是獨(dú)立產(chǎn)品,開發(fā)人員可以通過遠(yuǎn)程對象訪問API將其servlet / JSP頁面綁定到EJB組件。 根據(jù)應(yīng)用服務(wù)器的不同,程序員可以使用CORBA或RMI與他們的bean進(jìn)行通信,但是基本標(biāo)準(zhǔn)是根據(jù)需要使用JNDI定位和創(chuàng)建EJB引用。

    現(xiàn)在,使這個問題困惑的一件事是,許多應(yīng)用程序服務(wù)器提供程序在其產(chǎn)品中都包含了部分或全部這些組件。 如果查看WebLogic(http://www.beasys.com/),則會發(fā)現(xiàn)WebLogic包含Web服務(wù)器,Servlet引擎,JSP處理器,JMS工具以及EJB容器。 從理論上講,此類產(chǎn)品可用于處理站點(diǎn)開發(fā)的所有方面。 實(shí)際上,您很可能會使用這種類型的產(chǎn)品來管理/服務(wù)EJB實(shí)例,而專用的Web服務(wù)器則處理特定的HTTP請求。

    12)我應(yīng)該重寫service()方法嗎?

    回答:

    不。它提供了很多您只需要自己做的內(nèi)務(wù)處理。 如果無論請求是POST還是GET都需要做某事,請創(chuàng)建一個輔助方法,并在doPost()和doGet()的開頭調(diào)用它。

    13)我的應(yīng)用程序如何知道刪除HttpSession的時間(超時)?

    回答:

    定義一個類,例如SessionTimeoutNotifier,它實(shí)現(xiàn)javax.servlet.http.HttpSessionBindingListener。 創(chuàng)建一個SessionTimeoutNotifier對象,并將其添加到用戶會話中。 刪除會話后,Servlet引擎將調(diào)用SessionTimeoutNotifier.valueUnbound()。 您可以實(shí)現(xiàn)valueUnbound()來做任何您想做的事情。

    14)當(dāng)我們可以對servlet執(zhí)行相同的操作時,為什么要使用JSP?

    [原始問題:當(dāng)已經(jīng)有servlet技術(shù)可用于提供動態(tài)內(nèi)容時,為什么我應(yīng)該使用JSP?]

    回答:

    盡管JSP可以很好地提供動態(tài)Web內(nèi)容并將內(nèi)容與表示分離,但有些人可能仍想知道為什么應(yīng)將servlet拋給JSP。 servlet的實(shí)用程序不成問題。 它們非常適合服務(wù)器端處理,并且由于其龐大的安裝基礎(chǔ),因此可以保留。 實(shí)際上,從架構(gòu)上來講,您可以將JSP視為Servlet的高級抽象,它是Servlet 2.1 API的擴(kuò)展而實(shí)現(xiàn)的。 不過,您不應(yīng)該隨意使用servlet。 它們可能并不適合所有人。 例如,盡管頁面設(shè)計(jì)人員可以使用常規(guī)HTML或XML工具輕松編寫JSP頁面,但servlet更適合于后端開發(fā)人員,因?yàn)樗鼈兺ǔJ褂肐DE編寫-該過程通常需要更高水平的編程專業(yè)知識。

    在部署servlet時,即使開發(fā)人員也必須小心,并確保表示和內(nèi)容之間沒有緊密的聯(lián)系。 通常,您可以通過在混合中添加第三方HTML包裝程序包(例如htmlKona)來實(shí)現(xiàn)此目的。 但是,即使采用這種方法,盡管可以通過簡單的屏幕更改提供一定的靈活性,但仍然不能阻止您更改演示格式本身。 例如,如果您的演示文稿從HTML更改為DHTML,則仍然需要確保包裝程序包與新格式兼容。 在最壞的情況下,如果沒有包裝程序包,則最終可能會在動態(tài)內(nèi)容中對表示進(jìn)行硬編碼。 那么,解決方案是什么? 一種方法是同時使用JSP和Servlet技術(shù)來構(gòu)建應(yīng)用程序系統(tǒng)。

    15)如何使用HTTP協(xié)議在applet和servlet之間來回發(fā)送信息和數(shù)據(jù)?

    回答:

    使用標(biāo)準(zhǔn)的java.net.URL類,或使用java.net.Socket“自行滾動”。 請參閱HTTP規(guī)范
    有關(guān)詳細(xì)信息,請?jiān)L問W3C。

    注意: Servlet無法啟動該連接! 如果servlet需要異步將消息發(fā)送到applet,則必須使用java.net.Socket(在applet端)以及java.net.ServerSocket和Threads(在服務(wù)器端)打開持久套接字。

    16)是否可以獲取當(dāng)前servlet在文件系統(tǒng)上的路徑(不是URL)?

    回答:

    嘗試使用:

    request.getRealPath(request.getServletPath())

    一個示例可能是:

    out.println(request.getRealPath(request.getServletPath()));

    17)如何將servlet菊花鏈在一起,以使一個servlet的輸出成為下一個的輸入?

    回答:

    有兩種常見的方法將一個servlet的輸出鏈接到另一個servlet:

  • 第一種方法是別名,它描述了要執(zhí)行的一系列servlet。
  • 第二個是定義一個新的MIME-Type并將一個servlet關(guān)聯(lián)為處理程序。由于我并不真正使用第二個,因此我將重點(diǎn)介紹別名。
  • 要將servlet鏈接在一起,必須指定servlet的順序列表,并將其與別名關(guān)聯(lián)。 當(dāng)對該別名發(fā)出請求時,將調(diào)用列表中的第一個servlet,處理其任務(wù),并將輸出作為請求對象發(fā)送到列表中的下一個servlet。 輸出可以再次發(fā)送到另一個servlet。

    要實(shí)現(xiàn)此方法,您需要配置servlet引擎(JRun,JavaWeb服務(wù)器,JServ…)。

    例如,要為Servlet鏈接配置JRun,請選擇JSE服務(wù)(JRun Servlet引擎)以訪問“ JSE服務(wù)配置”面板。 您只需要定義一個新的映射規(guī)則,即可在其中定義鏈接servlet。

    假設(shè)使用/ servlets / chainServlet表示虛擬路徑,并用逗號分隔servlet列表,如srvA,srvB。

    因此,當(dāng)您調(diào)用諸如http:// localhost / servlets / chainServlet之類的請求時,將首先在內(nèi)部調(diào)用servlet srvA,并將其結(jié)果傳遞到servlet srvB中。

    srvA servlet代碼應(yīng)如下所示:

    public class srvA extends HttpServlet {...public void doGet (...) {PrintWriter out =res.getWriter();rest.setContentType("text/html");...out.println("Hello Chaining servlet");}}

    servlet srvB所要做的就是打開請求對象的輸入流,并將數(shù)據(jù)讀入BufferedReader對象,例如:

    BufferedReader b = new BufferedReader( new InputStreamReader(req.getInputStream() ) );String data = b.readLine();b.close();

    之后,您可以使用數(shù)據(jù)格式化輸出。

    它也應(yīng)該可以與Java Web Server或Jserv一起使用。 只需查看他們的文檔即可定義別名。 希望對您有所幫助。

    18)為什么servlet中沒有構(gòu)造函數(shù)?

    回答:

    就其具有充當(dāng)構(gòu)造函數(shù)的init()方法而言,Servlet就像小應(yīng)用程序一樣。 由于servlet環(huán)境負(fù)責(zé)實(shí)例化servlet,因此不需要顯式的構(gòu)造函數(shù)。 您需要運(yùn)行的任何初始化代碼都應(yīng)放在init()方法中,因?yàn)樗窃赟ervlet容器首次加載Servlet時被調(diào)用的。

    19)將JDBC與Servlet一起使用時,如何處理多個并發(fā)數(shù)據(jù)庫請求/更新?

    回答:

    每當(dāng)修改數(shù)據(jù)時,所有的dbms都提供鎖定功能。 可能有兩種情況:

  • 在不同的行上有多個數(shù)據(jù)庫更新,如果您正在使用servlet,則servlet將為不同的用戶打開多個連接。 在這種情況下,無需執(zhí)行其他編程。
  • 如果數(shù)據(jù)庫更新在同一行上,則這些行將由dbms自動鎖定,因此我們必須反復(fù)向dbms發(fā)送請求,直到dbms釋放該鎖定為止。
  • JDBC文檔中處理了此問題。 查找“交易”和“自動提交”。 可能會造成混亂。

    20)GenericServlet和HttpServlet有什么區(qū)別?

    回答:

    GenericServlet適用于可能不使用HTTP的Servlet,例如FTP Servlet。 當(dāng)然,事實(shí)證明沒有FTP servlet這樣的東西,但是他們在設(shè)計(jì)規(guī)范時正試圖為將來的增長做計(jì)劃。 也許有一天會有另一個子類,但是現(xiàn)在,始終使用HttpServlet。

    21)如何在Servlet和JSP之間共享會話對象?

    回答:

    直接在servlet和JSP頁面之間共享會話。 JSP通過創(chuàng)建會話對象并使其變得可用來使其變得容易一些。 在servlet中,您必須自己做。 這是這樣的:

    //create a session if one is not created already nowHttpSession session = request.getSession(true);//assign the session variable to a value.session.putValue("variable","value");

    在jsp頁面中,這是獲取會話值的方法:

    <%session.getValue("varible");%>

    22)什么是servlet?

    回答:

    Servlet是使用Java程序擴(kuò)展Web服務(wù)器以執(zhí)行以前由CGI腳本或?qū)S蟹?wù)器擴(kuò)展框架處理的任務(wù)的一種方式。

    23)是否有什么方法可以在不重新啟動服務(wù)器的情況下從Web服務(wù)器內(nèi)存中卸載servlet?

    回答:

    沒有標(biāo)準(zhǔn)的方法/機(jī)制可以從內(nèi)存中卸載servlet。 某些服務(wù)器(例如JWS)提供了從其管理模塊加載和卸載servlet的方法。 其他人(例如Tomcat)要求您僅替換WAR文件。

    24)JavaBean和Servlet有什么區(qū)別?

    回答:

    JavaBeans是創(chuàng)建可重用的軟件組件或bean遵循的一組規(guī)則。 這包含屬性和事件。 最后,您有了一個可由程序(例如IDE)檢查的組件,以允許JavaBean組件的用戶對其進(jìn)行配置并在其Java程序中運(yùn)行。

    Servlet是在Servlet引擎中運(yùn)行的Java類,實(shí)現(xiàn)了特定的接口:Servlet,強(qiáng)制您實(shí)施某些方法(service())。 servlet是運(yùn)行該servlet的Web服務(wù)器的擴(kuò)展,僅當(dāng)用戶請求從網(wǎng)頁到servlet的GET或POST調(diào)用時才通知您。

    因此,除了Java之外,兩者都沒有共同點(diǎn)。

    25)我們可以在一個會話對象中存儲多少數(shù)據(jù)?

    回答:

    由于會話保留在服務(wù)器端,因此可以在其中存儲任何數(shù)量的數(shù)據(jù)。

    唯一的限制是sessionId長度,該長度不得超過?4000字節(jié)-HTTP標(biāo)頭長度限制為4Kb暗示了此限制,因?yàn)閟essionId可能存儲在cookie中或以URL編碼(使用“ URL rewriting ”)和cookie規(guī)范表示Cookie和HTTP請求(例如GET /document.html\n)的大小不能超過4kb。

    26)doGet和doPost方法之間有什么區(qū)別?

    回答:

    調(diào)用doGet以響應(yīng)HTTP GET請求。 當(dāng)用戶單擊鏈接或在瀏覽器的地址欄中輸入URL時,會發(fā)生這種情況。 對于某些HTML FORM(在FORM標(biāo)記中指定了METHOD =“ GET”HTML FORM),也會發(fā)生這種情況。

    調(diào)用doPost以響應(yīng)HTTP POST請求。 某些HTML FORM(在FORM標(biāo)記中指定了METHOD =“ POST”HTML FORM)會發(fā)生這種情況。

    HttpServlet基類中的服務(wù)的默認(rèn)(超類)實(shí)現(xiàn)調(diào)用這兩種方法。 您應(yīng)該覆蓋一個或兩個來執(zhí)行servlet的動作。 您可能不應(yīng)該重寫service()。

    27)encodeRedirectUrl和encodeURL有什么區(qū)別?

    回答:

    encodeURL和encodeRedirectURL是HttpResponse對象的方法。 如有必要,兩者都重寫原始URL以包括會話數(shù)據(jù)。 (如果啟用了cookie,則兩個都不操作。)

    encodeURL用于HTML頁面內(nèi)的普通鏈接。

    encodeRedirectURL用于傳遞給response.sendRedirect()的鏈接。 它的語法要求也略有不同,因此不適合在這里使用。

    28)我可以在servlet中使用System.exit()嗎?

    回答:

    加油! 不,不,不,不...

    充其量,您將獲得一個安全例外。 最糟糕的是,您將使servlet引擎或整個Web服務(wù)器退出。 你真的不想那樣做,對吧?

    我是否需要在Connection或Statement對象上進(jìn)行同步?

    回答:

    您不必。 如果您的JDBC驅(qū)動程序支持多個連接,那么即使其他請求/線程也正在訪問同一連接上的其他語句,各種createStatement方法也將為您提供一個線程安全,可重入,獨(dú)立的語句,該語句應(yīng)該可以正常運(yùn)行。

    當(dāng)然,雙手合十永遠(yuǎn)不會受傷……許多早期的JDBC驅(qū)動程序并沒有重入。 現(xiàn)代版本的JDBC驅(qū)動程序應(yīng)該可以正常運(yùn)行,但是永遠(yuǎn)不能保證。

    使用連接池可以避免整個問題,并且可以提高性能。

    30)如何確定正在使用的servlet或JSP引擎的名稱和版本號?

    回答:

    在Servlet中,您可以按以下方式調(diào)用ServletContext.getServerInfo()方法:

    String thisServer= getServletConfig().getServletContext().getServerInfo();

    如果使用的是JSP,則可以使用以下表達(dá)式:

    <%= application.getServerInfo() %>

    31)如何在運(yùn)行時獲取servlet / JSP頁面的絕對URL?

    回答:

    您可以獲取所有必要信息,以便從請求對象確定URL。 要從方案,服務(wù)器名稱,端口,URI和查詢字符串重構(gòu)絕對URL,可以使用java.net中的URL類。 以下代碼片段將確定您頁面的絕對URL:

    String file = request.getRequestURI();if (request.getQueryString() != null) {file += '?' + request.getQueryString();}URL reconstructedURL = new URL(request.getScheme(),request.getServerName(),request.getServerPort(),file);out.println(URL.toString());

    32)為什么GenericServlet和HttpServlet實(shí)現(xiàn)Serializable接口?

    回答:

    GenericServlet和HttpServlet實(shí)現(xiàn)Serializable接口,以便servlet引擎可以在不使用servlet時“Hibernate” servlet的狀態(tài),并在需要時重新設(shè)置它的位置,或者復(fù)制servlet實(shí)例以實(shí)現(xiàn)更好的負(fù)載平衡。 我不知道當(dāng)前的servlet引擎是否或如何做到這一點(diǎn),這可能會產(chǎn)生嚴(yán)重的影響,例如在程序員不知道的情況下破壞對init()方法中獲得的對象的引用。 程序員應(yīng)意識到這一陷阱,并實(shí)現(xiàn)盡可能無狀態(tài)的Servlet,將數(shù)據(jù)存儲委派給Session對象或ServletContext。 通常,無狀態(tài)Servlet更好,因?yàn)樗鼈兊纳炜s性更好并且代碼更簡潔。

    33)在覆蓋doGet(),doPost()和service()方法之間如何選擇?

    回答:

    doGet()和doPost()方法之間的區(qū)別在于,當(dāng)Servlet從HTTP協(xié)議請求中接收到GET或POST請求時,它們將在Servlet中通過其service()方法擴(kuò)展的HttpServlet中被調(diào)用。

    GET請求是從服務(wù)器獲取資源的請求。 這是瀏覽器請求網(wǎng)頁的情況。 也可以在請求中指定參數(shù),但是總體上參數(shù)的長度受到限制。 在html中以這種方式聲明的網(wǎng)頁中的表單就是這種情況:<form method =” GET”>或<form>。

    POST請求是將表單數(shù)據(jù)發(fā)布(發(fā)送)到服務(wù)器上的資源的請求。 在html中以這種方式聲明的網(wǎng)頁中的表單就是這種情況:<form method =” POST”>。 在這種情況下,參數(shù)的大小可能會更大。

    GenericServlet具有一個service()方法,該方法在發(fā)出客戶端請求時被調(diào)用。 這意味著傳入請求都將調(diào)用它,并且HTTP請求將被原樣提供給servlet(您必須自己進(jìn)行解析)。

    HttpServlet具有doGet()和doPost()方法,這些方法在客戶端請求為GET或POST時被調(diào)用。 這意味著請求的解析是由servlet完成的:您調(diào)用了適當(dāng)?shù)姆椒?#xff0c;并具有方便的方法來讀取請求參數(shù)。

    注意: doGet()和doPost()方法(以及其他HttpServlet方法)由service()方法調(diào)用。

    最后,如果您必須響應(yīng)HTTP協(xié)議客戶端(通常是瀏覽器)發(fā)出的GET或POST請求,請毫不猶豫地?cái)U(kuò)展HttpServlet并使用其便捷方法。

    如果必須響應(yīng)未使用HTTP協(xié)議的客戶端發(fā)出的請求,則必須使用service()。

    每種技術(shù)的優(yōu)缺點(diǎn)是什么?

    回答:

    Servlet擴(kuò)展了網(wǎng)站的服務(wù)器端功能。 Servlet與該服務(wù)器(或任何其他服務(wù)器)上的其他應(yīng)用程序進(jìn)行通信,并執(zhí)行“常規(guī)”靜態(tài)HTML文檔之外的任務(wù)。 Servlet可以接收一個請求,以通過EJB從一個或多個數(shù)據(jù)庫中獲取一些信息,然后將該數(shù)據(jù)轉(zhuǎn)換為靜態(tài)HTML / WML頁面,以供客戶端查看。 Even if the servlet talks to many other applications all over the world to get this information, it still looks like it happened at that website.

    RMI (Remote Method Invocation) is just that – a way to invoke methods on remote machines. It is way for anapplication to talk to another remote machine and execute different methods, all the while appearing as if the action was being performed on the local machine.

    Servlets (or JSP) are mainly used for any web-related activity such as online banking, online grocery stores, stock trading, etc. With servlets, you need only to know the web address and the pages displayed to you take care of calling the different servlets (or actions within a servlet) for you. Using RMI, you must bind the RMI server to an IP and port, and the client who wishes to talk to the remote server must know this IP and port, unless of course you used some kind of in-between lookup utility, which you could do with (of all things) servlets.

    35) How can we use a servlet as a proxy for communications between two applets?

    Answer:

    One way to accomplish this is to have the applets communicate via TCP/IP sockets to the servlet. The servlet would then use a custom protocol to receive and push information between applets. However, this solution does have firewall problems if the system is to be used over and Internet verses an Intranet.

    36) How can I design my servlet/JSP so that query results get displayed on several pages, like the results of a search engine? Each page should display, say, 10 records each and when the next link is clicked, I should see the next/previous 10 records and so on.

    Answer:

    Use a Java Bean to store the entire result of the search that you have found. The servlet will then set a pointer to the first line to be displayed in the page and the number of lines to display, and force a display of the page. The Action in the form would point back to the servlet in the JSP page which would determine whether a next or previous button has been pressed and reset the pointer to previous pointer + number of lines and redisplay the page. The JSP page would have a scriplet to display data from the Java Bean from the start pointer set to the maximum number of lines with buttons to allow previous or next pages to be selected. These buttons would be displayed based on the page number (ie if first then don't display previous button).

    37) How do I deal with multi-valued parameters in a servlet?

    Answer:

    Instead of using getParameter() with the ServletRequest, as you would with single-valued parameters, use the getParameterValues() method. This returns a String array (or null) containing all the values of the parameter requested.

    38) How can I pass data retrieved from a database by a servlet to a JSP page?

    Answer:

    One of the better approaches for passing data retrieved from a servlet to a JSP is to use the Model 2 architecture as shown below:

    Basically, you need to first design a bean which can act as a wrapper for storing the resultset returned by the database query within the servlet. Once the bean has been instantiated and initialized by invoking its setter methods by the servlet, it can be placed within the request object and forwarded to a display JSP page as follows:

    com.foo.dbBean bean = new com.foo.dbBean();//call setters to initialize beanreq.setAttribute("dbBean", bean);url="..."; //relative url for display jsp pageServletContext sc = getServletContext();RequestDispatcher rd = sc.getRequestDispatcher(url);rd.forward(req, res);

    The bean can then be accessed within the JSP page via the useBean tag as:

    <jsp:useBean id="dbBean" class="com.foo.dbBean" scope="request"/>...<%//iterate through the rows within dbBean and//access the values using a scriptlet%>

    Also, it is best to design your application such that you avoid placing beans into the session unless absolutely necessary. Placing large objects within the session imposes a heavy burden on the performance of the servlet engine. Of course, there may be additional design considerations to take care of – especially if your servlets are running under a clustered or fault-tolerant architecture.

    39) How can I use a servlet to generate a site using frames?

    Answer:

    In general, look at each frame as a unique document capable of sending its own requests and receiving its own responses. You can create a top servlet (say, FrameServlet) that upon invocation creates the frame layout you desire and sets the SRC parameters for the frame tags to be another servlet, a static page or any other legal value for SRC.

    ---------------------- SAMPLE ----------------------public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {response.setContentType("text/html");PrintWriter out = new PrintWriter (response.getWriter());out.println("");out.println("Your Title");// definingthe three rows of Frames for the main page// top : frm_1// middle : frm_2// bottom : frm_3out.println("");out.println("");out.println("");out.println("");out.println("");out.println("");out.println("");out.close();-------------------------- END ------------------------------------------

    Where MenuServlet and DummyServlet provide content and behavior for the frames generated by FrameServlet.

    40) What is HTTP tunneling, in the general sense?

    Answer:

    HTTP tunneling is a general technique whereby arbitrary data may be sent via an HTTP connection to and from CGI scripts or Java Servlets on a Web server. This is done by serializing the data to be transmitted into a stream of bytes, and sending an HTTP message with content type “application/octet-stream”.

    HTTP tunneling is also referred to as Firewall tunneling.

    41) How do I handle FORMs with multiple form elements (eg radio buttons) using the same name?

    Answer:

    For radio buttons, the HTML spec assumes that a given group of buttons will have the same NAME and different VALUEs; the browser makes sure that only one button per group name will be selected (at most). So you can just call request.getParameter(“groupname”).

    <input type="radio" name="topping" value="cheese" checked>Cheese<input type="radio" name="topping" value="pepperoni">Pepperoni<input type="radio" name="topping" value="anchovies">Anchovies

    If the user selects “Pepperoni” then request.getParameter(“topping”) will return the string “pepperoni”.

    For lists using the <select multiple> FORM tag, multiple values can be returned for the same parameter name. When that can happen, use request.getParameterValues(“param”) which returns a String[] you can iterate through.

    It's bad form (so to speak), but you can also duplicate other element types, like

    Name 1: <input type="text" name="name" value="Dick">Name 2: <input type="text" name="name" value="Jane">

    These also get returned in an array by request.getParameterValues().

    42) How do I separate presentation (HTML) from business logic (Java) when using servlets?

    Answer:

    Almost anybody who has ever written a servlet can identify with this one. We all know it's bad for to embed HTML code in our java source; it's lame to have to recompile and re-deploy every time you want an HTML element to look a bit different. But what are our choices here? There are two basic options;

    1. Use JSP:
    Java Server Pages allows you to embed Java code or the results of a servlet into your HTML. You could, for instance, define a servlet that gives a stock quote, then use the tag in a JSP page to embed the output. But then, this brings up the same problem; without discipline, your content/presentation and program logic are again meshed. I think the ideal here is to completely separate the two.

    2. Use a templating/parsing system:
    Hmm…I know you're about to rant about re-inventing the wheel, but it's not that bad (see below). Plus, it really does pay to take this approach; you can have a group of programmers working on the Java code, and a group of HTML producers maintaining the interface. So now you probably want to know how to do it…so read on.

    Use SSI!

    Remember SSI? It hasn't gotten much attention in recent years because of embeddable scripting languages like ASP and JSP, but it still remains a viable option. To leverage it in the servlet world, I believe the best way is to use an API called SSI for Java from Areane. This API will let you emulate SSI commands from a templating system, and much more. It will let you execute any command on any system, including executing java classes! It also comes with several utility classes for creating stateful HTML form elements, tables for use with iteration, and much more. It's also open source, so it's free and you can tweak it to your heart's content! You can read the SSI for Java documentation for detailed info, but the following is an example of its use.

    Here's the servlet:

    import javax.servlet.*;import javax.servlet.http.*;import java.io.*;import java.util.*;import com.areane.www.ssi.*;public class SSITemplatingServlet extends HttpServlet {private String templateFilesDirectory = "d:\\projects\\idemo\\templates\\"; //Holds path to template files/**Handles GET requests; defers every request to the POST processor*/public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException, FileNotFoundException {doPost(req, res);}/**Handles all requests. Processes the request,*saves the values, parses the file, then feeds the file to the out stream*/public void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException, FileNotFoundException {HttpSession ses = req.getSession(true);Properties context = null;if((context = (Properties)ses.getValue("user.context")) == null) { //if properties doesn't already exist, create it.context = new Properties();}//Write parameters to Properties objectEnumeration paramNames = req.getParameterNames();String curName, curVal;while(paramNames.hasMoreElements()) {curName = (String)paramNames.nextElement();curVal = req.getParameter(curName);context.setProperty(curName, curVal);}//Save the values to the sessionses.putValue("user.context", context);//Parse the page and stream to the clientString templateName = req.getParameter("template"); // Get the file name of the template to useres.setContentType("text/html");SsiPage page = SsiParser.parse(this.templateFilesDirectory + templateName); //Parsing occurs herepage.write(res.getWriter(), context); //Stream to the clientpage = null; //clean up}}

    Now, just create a template file, pass the servlet the template file name, and have at it!

    43) For an HTML FORM with multiple SUBMIT buttons, how can a servlet ond

    differently for each button?

    Answer:

    The servlet will respond differently for each button based on the html that you have placed in the HTML page. 讓我們解釋一下。

    For a submit button the HTML looks like <input type=submit name=”Left” value=”left”>. A servlet could extract the value of this submit by using the getParameter(“Left”) from the HttpRequest object. It follows then that if you have HTML within a FORM that appears as:

    <input type=submit name="Direction" value="left"><input type=submit name="Direction" value="right"><input type=submit name="Direction" value="up"><input type=submit name="Direction" value="down">

    Then the getParameter(“Direction”) from the HttpRequest would extract the value pressed by the user, either “l(fā)eft”, “right”, “up” or “down”. A simple comparision in the servlet with the these values could occur and processing based on the submit button would be performed.

    Similiarly,for submit buttons with different names on a page, each of these values could be extracted using the getParameter() call and acted on. However, in a situation where there are multiple buttons, common practice would be to use one name and multiple values to identify the button pressed.

    44) What is meant by the term “business logic”?

    Answer:

    “Business logic” is just a fancy way of saying “code.”

    More precisely, in a three-tier architecture, business logic is any code that is not specifically related to storing and retrieving data (that's “data storage code”), or to formatting data for display to the user (that's “presentation logic”). It makes sense, for many reasons, to store this business logic in separate objects; the middle tier comprises these objects. However, the divisions between the three layers are often blurry, and business logic is more of an ideal than a reality in most programs. The main point of the term is, you want somewhere to store the logic and “business rules” (another buzzword) of your application, while keeping the division between tiers clear and clean.

    45) How can I explicitly unload a servlet or call the destroy method?

    Answer:

    In general, you can't. The Servlet API does not specify when a servlet is unloaded or how the destroy method is called. Your servlet engine (ie the implementation of the interfaces in the JSDK) might provide a way to do this, probably through its administration interface/tool (like Webshpere or JWS). Most servlet engines will also destroy and reload your servlet if they see that the class file(s) have been modified.

    46) What is a servlet bean?

    Answer:

    A servlet bean is a serializable servlet that follows the JavaBeans component architecture, basically offering getter/setter methods.

    As long as you subclass GenericServlet/HttpServlet, you are automatically Serializable.

    If your web server supports them, when you install the servlet in the web server, you can configure it through a property sheet-like interface.

    47) Why do we need to call super.init(config) in the init method of a servlet?

    Answer:

    Just do as you're told and you won't get hurt!

    Because if you don't, then the config object will get lost. Just extend HttpServlet, use init() (no parameters) and it'll all work ok.

    From the Javadoc: init() – A convenience method which can be overridden so that there's no need to call super.init(config).

    48) What is a servlet engine?

    Answer:

    A “servlet engine” is a program that plugs in to a web server and runs servlets. The term is obsolete; the preferred term now is “servlet container” since that applies both to plug-in engines and to stand-alone web servers that support the Servlet API.

    49) Which is the most efficient (ie processing speed) way to create a server application that accesses a database: A Servlet using JDBC; a JSP page using a JavaBean to carry out the db access; or JSP combined with a Servlet? Are these my only choices?

    Answer:

    Your question really should be broken in two.

    1-What is the most efficient way of serving pages from a Java object?. There you have a clear winner in the Servlet. Althought if you are going to change the static content of the page often is going to be a pain because you'll have to change Java code. The second place in speed is for JSP pages. But, depending on your application, the difference in speed between JSP pages and raw servlets can be so small that is not worth the extra work of servlet programming.

    2-What is the most efficient way of accessing a database from Java?. If JDBC is the way you want to go the I'd suggest to pick as many drivers as you can (II,III,IV or wathever) and benchmark them. Type I uses a JDBC/ODBC bridge and usually has lousy performance. Again, go for the simplest (usually type IV driver) solution if that meets you performance needs.

    For database applications, the performance bottleneck is usually the database, not the web server/engine. In this case, the use of a package that access JDBC with connection pooling at the application level used from JSP pages (with or withouth beans as middleware) is the usual choice. Of course, your applications requirements may vary.

    50) How can I change the port of my Java Web Server from 8080 to something else?

    Answer:

    這很簡單。 JAVA WEB SERVER comes with remote Web administration tool. You can access this with a web browser.

    Administration tool is located on port 9090 on your web server. To change port address for web server:

  • Access tool (http://hostname:9090)
  • Enter User Id/Password (by default it is admin/admin)
  • Select service (Web service)
  • Click on “manage” button. You will get a popup screen with all settings.
  • Click on network tree node, On right hand side you will get text box for entering port no.
  • Change port number with desire one.
  • click on restart button.
  • 51) Can I send multiple responses for a single request?

    Answer:

    No. That doesn't even make sense

    You can, however, send a “redirect”, which tells the user's browser to send another request, possibly to the same servlet with different parameters. Search this FAQ on “redirect” to learn more.

    52) What is FORM based login and how do I use it? Also, what servlet containers support it?

    Answer:

    Form based login is one of the four known web based login mechanisms. For completeness I list all of them with a description of their nature:

  • HTTP Basic Authentication
    • An authentication protocol defined within the HTTP protocol (and based on headers). It indicates the HTTP realm for which access is being negotiated and sends passwords with base64 encoding, therefore it is not very secure. (See RFC2068 for more information.)
  • HTTP Digest Authentication
    • Like HTTP Basic Authentication, but with the password transmitted in an encrypted form. It is more secure than Basic, but less then HTTPS Authentication which uses private keys. Yet it is not currently in widespread use.
  • HTTPS Authentication (SSL Mutual Authentication)
    • This security mechanism provides end user authentication using HTTPS (HTTP over SSL). It performs mutual (client & server) certificate based authentication with a set of different cipher suites.
  • Form Based Login
    • A standard HTML form (static, Servlet/JSP or script generated) for logging in. It can be associated with protection or user domains, and is used to authenticate previously unauthenticated users.
    • The major advantage is that the look and feel of the login screen can be controlled (in comparison to the HTTP browsers' built in mechanisms).
  • To support 1., 3., and 4. of these authentication mechanisms is a requirement of the J2EE Specification (as of v1.2, 3.4.1.3 Required Login Mechanisms). (HTTP Digest Authentication is not a requirement, but containers are encouraged to support it.)

    You can also see section 3.3.11.1 of the J2EE Specs. (User Authentication, Web Client) for more detailed descriptions of the mechanisms.

    Thus any Servlet container that conforms to the J2EE Platform specification should support form based login.

    To be more specific, the Servlet 2.2 Specification describes/specifies the same mechanisms in 11.5 including form based login in 11.5.3.

    This section (11.5.3) describes in depth the nature, the requirements and the naming conventions of form based login and I suggest to take a look at it.

    Here is a sample of a conforming HTML login form:

    <form method="POST" action="j_security_check"><input type="text" name="j_username"><input type="password" name="j_password"></form>

    Known Servlet containers that support FORM-based login are:

    • iPlanet Application Server
    • Tomcat (the reference implementation of the Java Servlet API)

    53) How do I capture a request and dispatch the exact request (with all the parameters received) to another URL?

    Answer:

    As far as i know it depends on the location of the next target url.

    • If the next servlet url is in the same host, then you can use the forward method.

    Here is an example code about using forward:

    RequestDispatcher rd = null;String targetURL = "target_servlet_name";ServletContext ctx = this.getServletContext();rd = ctx.getRequestDispatcher(targetURL);rd.forward(request, response);

    54) How can the data within an HTML form be refreshed automatically whenever there is a change in the database?

    Answer:

    JSP is intended for dynamically generating pages. The generated pages can include wml, html, dhtml or whatever you want…

    When you have a generated page, JSP has already made its work. From this moment you have a page.

    If you want automatic refreshing, then this should be acomplished by the technology included in the generated page (JSP will tell only what to include in the page).

    The browser can not be loaded by extern factors. The browser is the one who fetches url's since the http protocol is request-response based. If a server can reload a browser without its allow, it implies that we could be receiving pages which we haven't asked for from servers.

    May you could use applets and a ServerSocket for receiving incoming signals from the server for changed data in the DB. This way you can load new information inside the applet or try to force a page reload.

    [That's a nice idea — it could use the showDocument() call to reload the current page. It could also use HTTP polling instead of maintaining an expensive socket connection. -Alex]

    Perhaps (if possible), could be simpler using an automatic JavaScript refreshing function that force page reload after a specified time interval.

    55) What is a web application (or “webapp”)?

    Answer:

    A web application is a collection of servlets, html pages, classes, and other resources that can be bundled and run on multiple containers from multiple vendors. A web application is rooted at a specific path within a web server. For example, a catalog application could be located at http://www.mycorp.com/catalog. All requests that start with this prefix will be routed to the ServletContext which represents the catalog application.

    56) How can I call a servlet from a JSP page? How can I pass variables from the JSP that the servlet can access?

    Answer:

    You can use <jsp:forward page=”/relativepath/YourServlet” /> or response.sendRedirect(“http://path/YourServlet”).

    Variables can be sent as:

    <jsp:forward page=/relativepath/YourServlet><jsp:param name="name1" value="value1" /><jsp:param name="name2" value="value2" /></jsp:forward>

    You may also pass parameters to your servlet by specifying response.sendRedirect(“http://path/YourServlet?param1=val1”).

    57) Can there be more than one instance of a servlet at one time ?

    Answer:

    It is important to note that there can be more than one instance of a given Servlet class in the servlet container. For example, this can occur where there was more than one servlet definition that utilized a specific servlet class with different initialization parameters. This can also occur when a servlet implements the SingleThreadModel interface and the container creates a pool of servlet instances to use.

    58) How can I measure the file downloading time using servlets?

    Answer:

    ServletOutputStream out = response.getOutputStream();String filename = getServletContext().getRealPath(request.getQueryString());FileInputStream fin = new FileInputStream(filename);long start = System.currentTimeMillis();byte data[] = new byte[1024];int len = 0;while ((len = fin.read(data)) > 0) {out.write(data, 0, len);}out.flush();long stop = System.currentTimeMills();log("took " + (stop - start) + "ms to download " + filename);

    59) What is inter-servlet communication?

    Answer:

    As the name says it, it is communication between servlets. Servlets talking to each other. [There are many ways to communicate between servlets, including

    • Request Dispatching
    • HTTP Redirect
    • Servlet Chaining
    • HTTP request (using sockets or the URLConnection class)
    • Shared session, request, or application objects (beans)
    • Direct method invocation (deprecated)
    • Shared static or instance variables (deprecated)

    Search the FAQ, especially topic Message Passing (including Request Dispatching) for information on each of these techniques. -Alex]

    Basically interServlet communication is acheived through servlet chaining. Which is a process in which you pass the output of one servlet as the input to other. These servlets should be running in the same server.

    eg ServletContext.getRequestDispatcher(HttpRequest, HttpResponse).forward(“NextServlet”) ; You can pass in the current request and response object from the latest form submission to the next servlet/JSP. You can modify these objects and pass them so that the next servlet/JSP can use the results of this servlet.

    There are some Servlet engine specific configurations for servlet chaining.

    Servlets can also call public functions of other servlets running in the same server. This can be done by obtaining a handle to the desired servlet through the ServletContext Object by passing it the servlet name ( this object can return any servlets running in the server). And then calling the function on the returned Servlet object.

    eg TestServlet test= (TestServlet)getServletConfig().getServletContext().getServlet(“OtherServlet”); otherServletDetails= Test.getServletDetails();

    You must be careful when you call another servlet's methods. If the servlet that you want to call implements the SingleThreadModel interface, your call could conflict with the servlet's single threaded nature. (The server cannot intervene and make sure your call happens when the servlet is not interacting with another client.) In this case, your servlet should make an HTTP request to the other servlet instead of direct calls.

    Servlets could also invoke other servlets programmatically by sending an HTTP request. This could be done by opening a URL connection to the desired Servlet.

    60) How do I make servlet aliasing work with Apache+Tomcat?

    Answer:

    When you use Tomcat standalone as your web server, you can modify the web.xml in $TOMCAT_HOME/webapps/myApp/WEB-INF to add a url-pattern:

    <web-app><servlet><servlet-name>myServlet</servlet-name><servlet-class>myServlet</servlet-class></servlet><servlet-mapping><servlet-name>myServlet</servlet-name><url-pattern>/jsp-bin/*</url-pattern></servlet-mapping></web-app>

    This will let you use: http://webserver:8080/myApp/jsp-bin/stuff.html instead of: http://webserver:8080/myApp/servlet/myServlet/stuff.html But it won't work on port 80 if you've integrated Tomcat with Apache. Graeme Wallace provided this trick to remedy the situation. Add the following to your tomcat-apache.conf (or to a static version of it, since tomcat re-generates the conf file every time it starts):

    <LocationMatch /myApp/jsp-bin/* >SetHandler jserv-servlet</LocationMatch>

    This lets Apache turn over handling of the url pattern to your servlet.

    61) Is there any way to determine the number of concurrent connections my servlet engine can handle?

    Answer:

    Depends on whether or not your servlet container uses thread pooling. If you do not use a thread pool, the number of concurrent connections accepted by Tomcat 3.1, for example, is 10. This you can see for yourself by testing a servlet with the Apache JMeter tool.

    However, if your servlet container uses a thread pool, you can specify the number of concurrent connections to be accepted by the container. For Tomcat 3.1, the information on how to do so is supplied with the documentation in the TOMCAT_HOME/doc/uguide directory.

    62) What is a request dispatcher and how does it work?

    Answer:

    A RequestDispatcher object can forward a client's request to a resource or include the resource itself in the response back to the client. A resource can be another servlet, or an HTML file, or a JSP file, etc.

    You can also think of a RequestDispatcher object as a wrapper for the resource located at a given path that is supplied as an argument to the getRequestDispatcher method.

    For constructing a RequestDispatcher object, you can use either the ServletRequest.getRequestDispatcher() method or the ServletContext.getRequestDispatcher() method. They both do the same thing, but impose slightly different constraints on the argument path. For the former, it looks for the resource in the same webapp to which the invoking servlet belongs and the pathname specified can be relative to invoking servlet. For the latter, the pathname must begin with '/' and is interpreted relative to the root of the webapp.

    To illustrate, suppose you want Servlet_A to invoke Servlet_B. If they are both in the same directory, you could accomplish this by incorporating the following code fragment in either the service method or the doGet method of Servlet_A:

    RequestDispatcher dispatcher = getRequestDispatcher("Servlet_B");dispatcher.forward( request, response );

    where request, of type HttpServletRequest, is the first parameter of the enclosing service method (or the doGet method) and response, of type HttpServletResponse, the second. You could accomplish the same by

    RequestDispatcher dispatcher=getServletContext().getRequestDispatcher( "/servlet/Servlet_B" );dispatcher.forward( request, response );

    63) What is a Servlet Context?

    Answer:

    A Servlet Context is a grouping under which related servlets (and JSPs and other web resources) run. They can share data, URL namespace, and other resources. There can be multiple contexts in a single servlet container .

    The ServletContext object is used by an individual servlet to “call back” and obtain services from the container (such as a request dispatcher). Read the JavaDoc for javax.servlet.ServletContext for more information.

    You can maintain “application global” variables by using Servlet Context Attributes .

    64) Does the RequestDispatcher expect a relative URL to be relative to the originally-called servlet or to the current servlet (if different)?

    Answer:

    Since the RequestDispatcher will be passing the control (request object and response object) from the current Servlet, the relative URL must be relative to the current servlet.

    The originally called servlet has passed the control to the current servlet, and now current servlet is acting as controller to other resourses.

    65) What is the difference between in-process and out-of-process servlet containers?

    Answer:

    The in-process Servlet containers are the containers which work inside the JVM of Web server, these provides good performance but poor in scalibility.

    The out-of-process containers are the containers which work in the JVM outside the web server. poor in performance but better in scalibility

    In the case of out-of-process containers, web server and container talks with each other by using the some standard mechanism like IPC.

    In addition to these types of containers, there is 3rd type which is stand-alone servlet containers. These are an integral part of the web server.

    66) How is SingleThreadModel implemented in Tomcat? In other containers? [I would assume that Tomcat uses its connection thread pool, and creates a new instance of the servlet for each connection thread, instead of sharing one instance among all threads. Is that true?]

    Answer:

    The question mixes together two rather independent aspects of a servlet container: “concurrency control” and “thread pooling”.

    Concurrency control, such as achieved by having a servlet implement the SingleThreadModel interface, addresses the issue of thread safety. A servlet will be thread-safe or thread-unsafe regardless of whether the servlet container used a thread pool. Thread pooling merely eliminates the overhead associated with the creation and destruction of threads as a servlet container tries to respond to multiple requests received simultaneously. It is for this reason that the specification document for Servlet 2.2 API is silent on the subject of thread pooling — as it is merely an implementation detail. However, the document does indeed address the issue of thread safety and how and when to use SingleThreadModel servlets.

    Section 3.3.3.1 of the Servlet 2.2 API Specification document says that if a servlet implements the SingleThreadModel it is guaranteed “that only one request thread at time will be allowed in the service method.” It says further that “a servlet container may satisfy this guarantee by serializing requests on a servlet or by maintaining a pool of servlet instances.”

    Obviously, for superior performance you'd want the servlet container to create multiple instances of a SingleThreadModel type servlet should there be many requests received in quick succession. Whether or not a servlet container does that depends completely on the implementation. My experiments show that Tomcat 3.1 does indeed create multiple instances of a SingleThreadModel servlet, but only for the first batch of requests received concurrently. For subsequent batches of concurrent requests, it seems to use only one of those instances.

    67) Which servlet containers have persistent session support? Specifically, does Tomcat 3.1?

    Answer:

    All servlet containers that implement the Servlet 2.2 API must provide for session tracking through either the use of cookies or through URL rewriting. All Tomcat servlet containers support session tracking.

    68) Can I use JAAS as the authentication technology for servlets ?

    Answer:

    Yes, JAAS can be used as authentication technology for servlets. One important feature of JAAS is pure Java implementation. The JAAS infrastructure is divided into two main components: an authentication component and an authorization component. The JAAS authentication component provides the ability to reliably and securely determine who is currently executing Java code, regardless of whether the code is running as an application, an applet, a bean, or a servlet.

    69) How can I set a servlet to load on startup of the container, rather than on the first request?

    Answer:

    The Servlet 2.2 spec defines a load-on-startup element for just this purpose. Put it in the <servlet> section of your web.xml deployment descriptor. It is either empty (<load-on-startup/>) or contains “a positive integer indicating the order in which the servlet should be loaded. Lower integers are loaded before higher integers. If no value is specified, or if the value specified is not a positive integer, the container is free to load it at any time in the startup sequence.”

    例如,

    <servlet><servlet-name>foo</servlet-name><servlet-class>com.foo.servlets.Foo</servlet-class><load-on-startup>5</load-on-startup></servlet>

    Some servlet containers also have their own techniques for configuring this; please submit feedback with information on these.

    70) Is it possible to write a servlet that acts as a FTP server?

    Answer:

    是。 It would spawn a thread that opens a ServerSocket, then listens for incoming connections and speaks the FTP protocol.

    71) Is there a way to disable a user's ability to double-click a submit image/button (and therefore submitting duplicate data — multiple submits)? Is there a way to do this with Javascript?

    Answer:

    Give the submit image (or button) an onClick() handler. Have the handler check if a flag is set and if not set the flag and submit the form and then clear the form.

    72) What are the main differences between Servlets and ISAPI?

    Answer:

    The first difference is obviously that Servlets is the technology from Sun Microsystems and ISAPI is from Microsoft.

    Other Differences are:

  • Servlet is a simple .class file and ISAPI is a DLL
  • Servlets run in the Servlet containers and may be in-process or out of process. ISAs run in the same address space as the HTTP server
  • Servlet container preprocesses and postprocesses the data communication between the client and server. ISAPI Filters provide the capability of pre-processing and post-processing of all data sent between the client and the server
  • Java is the only choice for writing Servlets, VC++/MFC is used to write ISAPI code
  • Servlets works on most of the Web servers plus third party containers can be integrated with other web servers to provide servlets on them. ISAPI works on only ISAPI-compliant Web server (for example, Microsoft Internet Information Server)
  • Servlets can connect to the Databases through JDBC as well as jdbc-odbc bridges. ISAPI can connect to Databases through only ODBC
  • Servlets have access to many server-side technologies like EJB and etc. ISAPI is limited in scope
  • Multiple commands can be implemented in a servlet by using pathinfo . ISAPI allows multiple commands in one DLL, implemented as member functions of the CHttpServer object in the DLL.
  • Content generation and content presentation can be done seperately in Servlets with the help of JSP. ISAPI code has to generate HTML code itself.
  • 73) Can I associate a servlet with a particular mime-type, so if the client requests a file of that type, my servlet will be executed?

    Answer:

    In web.xml you can use a mime-mapping to map the type with a certain extension and then map the servlet to that extension.

    例如

    <mime-mapping><extension>zzz</extension><mime-type>text/plain</mime-type></mime-mapping><servlet-mapping><url>*.zzz</url><servlet-name>MyServlet</servlet-name></servlet-mapping>

    So, when a file for type zzz is requested, the servlet gets called.

    74) What are the different cases for using sendRedirect() vs. getRequestDispatcher()?

    Answer:

    When you want to preserve the current request/response objects and transfer them to another resource WITHIN the context, you must use getRequestDispatcher or getNamedDispatcher.

    If you want to dispatch to resources OUTSIDE the context, then you must use sendRedirect. In this case you won't be sending the original request/response objects, but you will be sending a header asking to the browser to issue a request to the new URL.

    If you don't need to preserve the request/response objects, you can use either.

    75) How do I access the value of a cookie using JavaScript?

    Answer:

    You can manipulate cookies in JavaScript with the document.cookie property. You can set a cookie by assigning this property, and retrieve one by reading its current value.

    The following statement, for example, sets a new cookie with a minimum number of attributes:

    document.cookie = "cookieName=cookieValue";

    And the following statement displays the property's value:

    alert(document.cookie);

    The value of document.cookie is a string containing a list of all cookies that are associated with a web page. It consists, that is, of name=value pairs for each cookie that matches the current domain, path, and date. The value of the document.cookie property, for instance, might be the following string:

    cookieName1=cookieValue1; cookieName2=cookieValue2;

    76) How do I write to a log file using JSP under Tomcat? Can I make use of the log() method for this?

    Answer:

    Yes, you can use the Servlet API's log method in Tomcat from within JSPs or servlets. These messages are stored in the server's log directory in a file called servlet.log.

    77) How can I use a servlet to print a file on a printer attached to the client?

    Answer:

    The security in a browser is designed to restrict you from automating things like this. However, you can use JavaScript in the HTML your servlet returns to print a frame. The browser will still confirm the print job with the user, so you can't completely automate this. Also, you'll be printing whatever the browser is displaying (it will not reliably print plug-ins or applets), so normally you are restricted to HTML and images.

    [The JavaScript source code for doing this is: <input type="button" onClick="window.print(0)" value="Print This Page">

    78) How do you do servlet aliasing with Apache and Tomcat?

    Answer:

    Servlet aliasing is a two part process with Apache and Tomcat. First, you must map the request in Apache to Tomcat with the ApJServMount directive, eg,

    ApJServMount/myservlet/ROOT

    Second, you must map that url pattern to a servlet name and then to a servlet class in your web.xml configuration file. Here is a sample exerpt:

    <servlet><servlet-name>myservlet</servlet-name><servlet-class>com.mypackage.MyServlet</servlet-class></servlet><servlet-mapping><servlet-name>myservlet</servlet-name><url-pattern>/myservlet</url-pattern></servlet-mapping>

    79) I want my servlet page to redirect to a login page if the session has timed out. How can I know if my session has timed out?

    Answer:

    If the servlet engine does the time-out, following code should help you:

    //assume you have a HttpServletRequest requestif(request.getSession(false)==null) {//no valid session (timeouted=invalid)//code to redirect to login page}

    80) Can Tomcat be configured to interpret all, or selected, .html files within a given context as JSP? Or, do JSP files have to end with a .jsp extension?

    Answer:

    yes you can do that by modifying the web.xml file. You will have to invoke the org.apache.jasper.runtime.JspServlet for all the requests having extension .html. You can do that by changing the Servlet mapping code:

    <servlet-mapping><servlet-name>jsp</servlet-name><url>*.html</url></servlet-mapping>

    And comment out the following block

    <mime-mapping><extension>html</extension><mime-type>text/html</mime-type></mime-mapping>

    81) What is the difference between request attributes, session attributes, and ServletContext attributes?

    Answer:

    A ServletContext attribute is an object bound into a context through ServletContext.setAttribute() method and which is available to ALL servlets (thus JSP) in that context, or to other contexts via the getContext() method. By definition a context attribute exists locally in the VM where they were defined. So, they're unavailable on distributed applications.

    Session attributes are bound to a session, as a mean to provide state to a set of related HTTP requests. Session attributes are available ONLY to those servlets which join the session. They're also unavailable to different JVMs in distributed scenarios. Objects can be notified when they're bound/unbound to the session implementing the HttpSessionBindingListener interface.

    Request attributes are bound to a specific request object, and they last as far as the request is resolved or while it keep dispatched from servlet to servlet. They're used more as comunication channel between Servlets via the RequestDispatcher Interface (since you can't add Parameters…) and by the container. Request attributes are very useful in web apps when you must provide setup information between information providers and the information presentation layer (a JSP) that is bound to a specific request and need not be available any longer, which usually happens with sessions without a rigorous control strategy.

    Thus we can say that context attributes are meant for infra-structure such as shared connection pools, session attributes to contextual information such as user identification, and request attributes are meant to specific request info such as query results.

    82) Are singleton/static objects shared between servlet contexts?

    [Question continues: For example if I have two contexts on a single web server, and each context uses a login servlet and the login servlet connects to a DB. The DB connection is managed by a singleton object. Do both contexts have their own instance of the DB singleton or does one instance get shared between the two?]

    Answer:

    It depends on from where the class is loaded.

    The classes loaded from context's WEB-INF directory are not shared by other contexts, whereas classes loaded from CLASSPATH are shared. So if you have exactly the same DBConnection class in WEB-INF/classes directory of two different contexts, each context gets its own copy of the singleton (static) object.

    83) When building web applications, what are some areas where synchronization problems arrise?

    Answer:

    In general, you will run into synchronization issues when you try to access any shared resource. By shared resource, I mean anything which might be used by more than one request.

    Typical examples include:

    • Connections to external servers, especially if you have any sort of pooling.
    • Anything which you include in a HttpSession. (Your user could open many browser windows and make many simultaneous requests within the one session.)
    • Log destinations, if you do your own logging from your servlets.

    84) What is the difference between apache webserver, java webserver and tomcat server?

    Answer:

    Apache is an HTTP server written in C that can be compiled and run on many platforms.

    Java WebServer is an HTTP server from Sun written in Java that also supports Servlets and JSP.

    Tomcat is an open-source HTTP server from the Apache Foundation, written in Java, that supports Servlets and JSP. It can also be used as a “plug-in” to native-code HTTP servers, such as Apache Web Server and IIS, to provide support for Servlets (while still serving normal HTTP requests from the primary, native-code web server).

    85) How can you embed a JavaScript within servlets / JSP pages?

    Answer:

    You don't have to do anything special to include JavaScript in servlets or JSP pages. Just have the servlet/JSP page generate the necessary JavaScript code, just like you would include it in a raw HTML page.

    The key thing to remember is it won't run in the server. It will run back on the client when the browser loads the generate HTML, with the included JavaScript.

    86) How can I make a POST request through response.sendRedirect() or response.setStatus() and response.setHeader() methods?

    Answer:

    你不能 It's a fundamental limitation of the HTTP protocol. You'll have to figure out some other way to pass the data, such as

    • Use GET instead
    • Make the POST from your servlet, not from the client
    • Store data in cookies instead of passing it via GET/POST

    87) How do I pass a request object of one servlet as a request object to another servlet?

    Answer:

    Use a Request Dispatcher.

    88) I call a servlet as the action in a form, from a jsp. How can I redirect the response from the servlet, back to the JSP? (RequestDispatcher.forward will not help in this case, as I do not know which resource has made the request. request.getRequestURI will return the uri as contained in the action tag of the form, which is not what is needed.)

    Answer:

    You'll have to pass the JSP's URI in to the servlet, and have the servlet call sendRedirect to go back to the JSP. 例如:

    <FORM ACTION="/foo/myservlet"><INPUT TYPE="HIDDEN" NAME="redirect" VALUE="/foo/thisjsp.jsp">Shoe size: <INPUT NAME="shoesize"><INPUT TYPE="SUBMIT"></FORM>

    Then in the servlet…

    response.sendRedirect(request.getParameter("redirect"));

    89) What is the ServletConfig object, and why is it useful?

    Answer:

    The ServletConfig object is an interface. It contains the methods

    • getInitParameter
    • getInitParameterNames
    • getServletContext
    • getServletName

    You can use the methods to determine the Servlet's initialization parameters, the name of the servlets instance, and a reference to the Servlet Context the servlet is running in.

    getServletContext is the most valuable method, as it allows you to share information accross an application (context).

    90) I have a global variable in a servlet class. What will happen to this global variable if two requests hit on the same time?

    Answer:

    What will happen is an unforeseeable event.

    The best way to establish a default occurrence (the servlet handles a request at a time) is to synchronize the access to the global variable or alternatively to create a servlet that implements the SingleThreadModel interface.

    91) Suppose I have 2 servers, server1 and server2. How can I take data in a cookie from server1, and send it to server2?

    Answer:

    You'll have to create a (new) similar cookie on server 2.

    Have a ReadCookieServlet running on server1 that

    • Reads the cookie, using request.getCookies()
    • Redirects to WriteCookieServlet running on server2, passing the cookie name, value and expiration date as request parameters, using response.sendRedirect() .

    Have a WriteCookieServlet running on server2 that

    • Reads the cookie name, value and expiration date request parameters, using request.getParameter() .
    • Creates a similar cookie, using response.addCookie() .

    92) How can I pass data from a servlet running in one context (webapp) to a servlet running in another context?

    Answer:

    There are three ways I can think of off the top of my head:

  • Store the information you want to share in a persistant format, such as in a file system or database. That way, any servlet that is running in a JVM that can “see” these resources can get to this information.
  • If persisting this information is not an option, you can bind this information to a context that is accessible to all servlet contexts, such as the application server's context. This way, you can keep the data you want to share in memory.
  • Use the old fashion way of passing information to a servlet – HTTP. One servlet could foward a request to another servlet and include the data that needs to be shared as parameters in the request.
  • 93) How can I write an “error page” — that is, a servlet or JSP to report errors of other servlets?

    Answer:

    The Servlet 2.2 specification allows you to specify an error page (a servlet or a JSP) for different kinds of HTTP errors or ServletExceptions. You can specify this in deployment descriptor of the web application as:

    <error-page><exception-type>FooException</exception-type><location>/error.jsp</location></error-page>

    where FooException is a subclass of ServletException.

    The web container invokes this servlet in case of errors, and you can access the following information from the request object of error servlet/JSP: error code, exception type, and a message.

    94) What is the difference between ServletContext and ServletConfig?

    Answer:

    A ServletContext represents the context in a servlet container of a servlet instance operates. A servlet container can have several contexts (or web applications) at one time. Each servlet instance is running in one of these contexts. All servlets instances running in the same context are part of the same web application and, therefore, share common resources. A servlet accesses these shared resource (such as a RequestDispatcher and application properties) through the ServletContext object.

    This notion of a web application became very significant upon the Servlet 2.1 API, where you could deploy an entire web application in a WAR file. Notice that I always said “servlet instance”, not servlet. That is because the same servlet can be used in several web applications at one time. In fact, this may be common if there is a generic controller servlet that can be configured at run time for a specific application. Then, you would have several instances of the same servlet running, each possibly having different configurations.

    This is where the ServletConfig comes in. This object defines how a servlet is to be configured is passed to a servlet in its init method. Most servlet containers provide a way to configure a servlet at run-time (usually through flat file) and set up its initial parameters. The container, in turn, passes these parameters to the servlet via the ServetConfig.

    95) Under what circumstances will a servlet be reloaded?

    Answer:

    That depends on the Servlet container.

    Most of the Servlet containers reload the servlet only it detects the code change in the Servlet, not in the referenced classes.

    In Tomcat's server.xml deployment descriptor, if you have mentioned

    <Context path="/myApp"docBase="D:/myApp/webDev"crossContext="true"debug="0"reloadable="true"trusted="false" ></Context>

    The reloadable = true makes the magic. Every time the Servlet container detects that the Servlet code is changed, it will call the destroy on the currently loaded Servlet and reload the new code.

    But if the class that is referenced by the Servlet changes, then the Servlet will not get loaded. You will have to change the timestamp of the servlet or stop-start the server to have the new class in the container memory.

    96) What is a Servlet Filter?

    Answer:

    A filter is basically a component that is invoked whenever a resource is invoked for which the filter is mapped. The resource can be something like a servlet, or a URL pattern. A filter normally works on the request, response, or header attributes, and does not itself send a response to the client.

    97) I am using the RequestDispatcher's forward() method to redirect to a JSP. The problem is that the jsp's url is now relative to the servlet's url and all my url's in the jsp such as <img src=”pic.gif”> will be corrupt. How do I solve this problem?

    Answer:

    You can use absolute urls like:

    <BODY><% String base = request.getContextPath(); %><IMG src="<%=base%>/img/pic.gif"></BODY>

    or write out a BASE tag like:

    <% String base = request.getContextPath(); %><HEAD><BASE HREF="<%=base%>"></HEAD><BODY><IMG src="img/pic.gif"></BODY>

    That should take care of the problem.

    98) How can I return a readily available (static) HTML page to the user instead of generating it in the servlet?

    Answer:

    To solve your problem, you can either send a “Redirect” back to the client or use a RequestDispatcher and forward your request to another page:

  • Redirect:

    A redirection is made using the HttpServletResponse object:

    if(condition) {response.sendRedirect("page1.html");} else {response.sendRedirect("page2.html");}
  • RequestDispatcher:

    A request dispatcher can be obtained through the ServletContext. It can be used to include another page or to forward to it.

    if(condition) {this.getServletContext().getRequestDispatcher("page1.html").forward();} else {this.getServletContext().getRequestDispatcher("page2.html").forward();}
  • Both solutions require, that the pages are available in you document root. If they are located somewhere else on your filesystem, you have to open the file manually and copy their content to the output writer.

    If your application server is set up in combination with a normal web server like Apache, you should use solution (1), because the the web server usually serves static files much faster than the application server.

    99) What is the difference between static variables and instance variables in a servlet?

    Answer:

    According to the Java Language definition, a static variable is shared among all instances of a class, where a non-static variable — also called an instance variable — is specific to a single instance of that class.

    According to the Servlet specification, a servlet that does not declare SingleThreadModel usually has one and only one instance, shared among all concurrent requests hitting that servlet.

    That means that, in servlets (and other multithreaded applications), an instance variable behaves very much like a static variable, since it is shared among all threads. You have to be very careful about synchronizing access to shared data.

    The big difference between instance variables and static variables comes when you have configured your servlet engine to instantiate two instances of the same servlet class, but with different init parameters. In this case, there will be two instances of the same servlet class, which means two sets of instance variables, but only one set of static variables.

    Remember that you can store data in lots of different places in a servlet. 以機(jī)智:

    • Local variables – for loop iterators, result sets, and so forth
    • Request attributes – for data that must be passed to other servlets invoked with the RequestDispatcher
    • Session attributes – persists for all future requests from the current user only
    • Instance variables – for data that persists for the life of the servlet, shared with all concurrent users
    • Static variables – for data that persists for the life of the application, shared with all concurrent users — including any other servlet instances that were instantiated with different init parameters
    • Context attributes – for data that must persist for the life of the application, and be shared with all other servlets

    100) How can I share data between two different web applications?

    Answer:

    Different servlets may share data within one application via ServletContext. If you have a compelling to put the servlets in different applications, you may wanna consider using EJBs.

    Reference: Top 100 Java Servlet Questions from our JCG partner Sunil Gulabani at the Sunil Gulabani blog.

    翻譯自: https://www.javacodegeeks.com/2013/09/top-100-java-servlet-questions.html

    java servlet

    總結(jié)

    以上是生活随笔為你收集整理的java servlet_Java Servlet的前100个问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。

    亚洲成av人影院在线观看 | 国产在热线精品视频 | 国产成人无码a区在线观看视频app | 欧美激情内射喷水高潮 | 无遮挡啪啪摇乳动态图 | 久青草影院在线观看国产 | 国产人妻精品一区二区三区不卡 | 国产精品人妻一区二区三区四 | 国产熟妇另类久久久久 | 成人片黄网站色大片免费观看 | 精品国产精品久久一区免费式 | 无码人妻黑人中文字幕 | 国产成人午夜福利在线播放 | 俺去俺来也www色官网 | 亚洲春色在线视频 | 55夜色66夜色国产精品视频 | 999久久久国产精品消防器材 | 日本免费一区二区三区最新 | 国产精品久久久一区二区三区 | 成熟妇人a片免费看网站 | 嫩b人妻精品一区二区三区 | 亚洲啪av永久无码精品放毛片 | 黄网在线观看免费网站 | 国产成人无码av片在线观看不卡 | 国产精品久久久久久久影院 | 麻豆av传媒蜜桃天美传媒 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产午夜福利100集发布 | 亚洲精品国产第一综合99久久 | 秋霞特色aa大片 | 婷婷丁香五月天综合东京热 | 久久久久久九九精品久 | 久久午夜无码鲁丝片秋霞 | 中文字幕无码av激情不卡 | 国产人妖乱国产精品人妖 | 波多野结衣乳巨码无在线观看 | 国产精品丝袜黑色高跟鞋 | 亚洲欧美日韩成人高清在线一区 | 精品国精品国产自在久国产87 | 欧美丰满熟妇xxxx性ppx人交 | 午夜精品一区二区三区在线观看 | 久久久久成人精品免费播放动漫 | 亚洲春色在线视频 | 麻豆精产国品 | 午夜熟女插插xx免费视频 | 国产成人综合色在线观看网站 | 强开小婷嫩苞又嫩又紧视频 | 久久久婷婷五月亚洲97号色 | 国产精品沙发午睡系列 | 亚洲中文字幕av在天堂 | 久久午夜无码鲁丝片午夜精品 | 狂野欧美激情性xxxx | 欧洲精品码一区二区三区免费看 | 日韩欧美中文字幕在线三区 | 色一情一乱一伦一视频免费看 | 亚洲精品无码人妻无码 | 色综合久久88色综合天天 | 成 人影片 免费观看 | 亚洲一区二区三区国产精华液 | 四虎永久在线精品免费网址 | 小sao货水好多真紧h无码视频 | 人妻无码久久精品人妻 | 亚洲人成影院在线观看 | 人人妻人人澡人人爽人人精品浪潮 | 国产精品久久久久久亚洲影视内衣 | 老熟妇仑乱视频一区二区 | 亚洲精品一区三区三区在线观看 | 又黄又爽又色的视频 | 人人爽人人澡人人人妻 | 日本护士毛茸茸高潮 | 国产极品美女高潮无套在线观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲欧美精品aaaaaa片 | 国产成人无码午夜视频在线观看 | 无码国产激情在线观看 | 亚洲日本va中文字幕 | 午夜不卡av免费 一本久久a久久精品vr综合 | 亚洲色欲色欲欲www在线 | 中文精品久久久久人妻不卡 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | yw尤物av无码国产在线观看 | 国产99久久精品一区二区 | 婷婷丁香五月天综合东京热 | 国产色精品久久人妻 | 成人片黄网站色大片免费观看 | 男女下面进入的视频免费午夜 | 内射巨臀欧美在线视频 | 免费男性肉肉影院 | 牲交欧美兽交欧美 | 国产精品美女久久久 | 亚洲精品欧美二区三区中文字幕 | 精品国产国产综合精品 | 欧美亚洲国产一区二区三区 | 欧美日本免费一区二区三区 | 国产精品亚洲专区无码不卡 | 亚无码乱人伦一区二区 | 亚洲国产成人av在线观看 | 日韩 欧美 动漫 国产 制服 | 国产9 9在线 | 中文 | 好男人www社区 | 青春草在线视频免费观看 | 欧美成人家庭影院 | 午夜福利一区二区三区在线观看 | 日韩欧美群交p片內射中文 | 亚洲熟熟妇xxxx | 亚洲精品中文字幕 | 国产亚洲欧美日韩亚洲中文色 | 欧美午夜特黄aaaaaa片 | 亚洲人交乣女bbw | 图片区 小说区 区 亚洲五月 | 特级做a爰片毛片免费69 | 欧美黑人巨大xxxxx | 午夜精品一区二区三区的区别 | 天堂а√在线中文在线 | 激情亚洲一区国产精品 | 全球成人中文在线 | 中文字幕中文有码在线 | 一个人看的www免费视频在线观看 | 久久久精品欧美一区二区免费 | 欧美xxxx黑人又粗又长 | 亚洲午夜无码久久 | 人妻有码中文字幕在线 | 欧美成人免费全部网站 | 亚洲一区av无码专区在线观看 | 国产精品无码一区二区桃花视频 | 男人的天堂av网站 | 中文字幕av无码一区二区三区电影 | 国产人妻人伦精品 | 人人妻人人澡人人爽人人精品浪潮 | 欧美精品在线观看 | 俺去俺来也www色官网 | 亚洲中文字幕乱码av波多ji | 大屁股大乳丰满人妻 | 中文无码伦av中文字幕 | 午夜无码区在线观看 | 国产激情艳情在线看视频 | 国产偷抇久久精品a片69 | 欧美精品一区二区精品久久 | 成人女人看片免费视频放人 | 久久久精品成人免费观看 | 久久久婷婷五月亚洲97号色 | 国产精品爱久久久久久久 | 国产国产精品人在线视 | 2019午夜福利不卡片在线 | 97精品人妻一区二区三区香蕉 | 亚洲国产日韩a在线播放 | 人妻熟女一区 | 黑人粗大猛烈进出高潮视频 | 亚洲人交乣女bbw | 色综合天天综合狠狠爱 | 国产精品视频免费播放 | 欧美日本精品一区二区三区 | 国产无套内射久久久国产 | 极品尤物被啪到呻吟喷水 | 亚洲精品久久久久avwww潮水 | 人妻插b视频一区二区三区 | 中文毛片无遮挡高清免费 | 77777熟女视频在线观看 а天堂中文在线官网 | 亚洲国产成人av在线观看 | 波多野结衣高清一区二区三区 | 天干天干啦夜天干天2017 | 大肉大捧一进一出好爽视频 | 激情综合激情五月俺也去 | 色婷婷综合激情综在线播放 | 亚洲中文字幕在线无码一区二区 | 久久精品女人天堂av免费观看 | 欧美丰满熟妇xxxx | 99久久久无码国产精品免费 | 水蜜桃色314在线观看 | 久久久精品456亚洲影院 | 欧美人与牲动交xxxx | 日韩欧美中文字幕在线三区 | 亚洲日韩av一区二区三区中文 | 国产av一区二区精品久久凹凸 | 18无码粉嫩小泬无套在线观看 | 久久久久亚洲精品中文字幕 | 一个人免费观看的www视频 | 乱码av麻豆丝袜熟女系列 | 久久综合给久久狠狠97色 | 久久人人爽人人爽人人片av高清 | 丁香花在线影院观看在线播放 | 色窝窝无码一区二区三区色欲 | 国产午夜福利100集发布 | 午夜成人1000部免费视频 | 国产一区二区三区日韩精品 | 欧美日韩综合一区二区三区 | 一区二区传媒有限公司 | 久久午夜无码鲁丝片秋霞 | 色综合久久久无码中文字幕 | 中文字幕人妻无码一夲道 | 亚洲男人av香蕉爽爽爽爽 | 无码人妻精品一区二区三区不卡 | 一二三四社区在线中文视频 | 亚洲中文无码av永久不收费 | 色婷婷综合激情综在线播放 | 亚洲aⅴ无码成人网站国产app | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产精品久久久一区二区三区 | 国产麻豆精品一区二区三区v视界 | 97色伦图片97综合影院 | 国产9 9在线 | 中文 | 少妇无码av无码专区在线观看 | 蜜臀aⅴ国产精品久久久国产老师 | 欧美一区二区三区 | 久久综合给久久狠狠97色 | 亚洲啪av永久无码精品放毛片 | 欧美兽交xxxx×视频 | 日日摸天天摸爽爽狠狠97 | 国产精品久久久久久亚洲毛片 | 人妻无码久久精品人妻 | 国产绳艺sm调教室论坛 | 色综合天天综合狠狠爱 | 国产莉萝无码av在线播放 | 久久www免费人成人片 | 亚拍精品一区二区三区探花 | 精品久久久中文字幕人妻 | 日韩精品无码一本二本三本色 | 蜜桃无码一区二区三区 | 国产无套粉嫩白浆在线 | 无码av免费一区二区三区试看 | 亚洲gv猛男gv无码男同 | 成人欧美一区二区三区 | 亚洲中文字幕在线观看 | 4hu四虎永久在线观看 | 国产成人无码午夜视频在线观看 | 牛和人交xxxx欧美 | 天堂а√在线地址中文在线 | 十八禁真人啪啪免费网站 | 老熟女重囗味hdxx69 | 亚洲国产av精品一区二区蜜芽 | 日本精品高清一区二区 | 99视频精品全部免费免费观看 | 性生交大片免费看女人按摩摩 | 成人精品一区二区三区中文字幕 | 中文字幕乱码人妻二区三区 | 麻豆国产丝袜白领秘书在线观看 | 好爽又高潮了毛片免费下载 | 无码av最新清无码专区吞精 | 久久综合狠狠综合久久综合88 | 伊人色综合久久天天小片 | 国产在线一区二区三区四区五区 | 国产三级精品三级男人的天堂 | 国产艳妇av在线观看果冻传媒 | 在线精品亚洲一区二区 | 国产免费久久精品国产传媒 | 少妇性荡欲午夜性开放视频剧场 | 乱人伦人妻中文字幕无码 | 免费人成在线视频无码 | 人人妻人人澡人人爽欧美精品 | 国产99久久精品一区二区 | 成人精品天堂一区二区三区 | 国产午夜福利亚洲第一 | 久久精品国产日本波多野结衣 | 日韩av无码中文无码电影 | 亚洲人成影院在线观看 | 亚洲精品午夜国产va久久成人 | 亚洲狠狠婷婷综合久久 | 色综合视频一区二区三区 | 一本精品99久久精品77 | 在线观看免费人成视频 | 国产婷婷色一区二区三区在线 | 中文字幕亚洲情99在线 | 色五月丁香五月综合五月 | 无码任你躁久久久久久久 | 人人妻人人澡人人爽欧美一区九九 | 久久国产精品萌白酱免费 | 女人被爽到呻吟gif动态图视看 | 少妇人妻大乳在线视频 | 国产亚洲日韩欧美另类第八页 | 国产sm调教视频在线观看 | 免费国产成人高清在线观看网站 | 午夜福利试看120秒体验区 | 日韩欧美群交p片內射中文 | 亚洲国产av精品一区二区蜜芽 | 国产成人精品视频ⅴa片软件竹菊 | 99精品视频在线观看免费 | 国产精品久久久久无码av色戒 | 国产真实夫妇视频 | 波多野结衣aⅴ在线 | 台湾无码一区二区 | 欧美亚洲日韩国产人成在线播放 | 亚洲s色大片在线观看 | 无码av免费一区二区三区试看 | 老子影院午夜精品无码 | 欧美日韩视频无码一区二区三 | 国产精品久久久久9999小说 | 亚洲精品综合一区二区三区在线 | 久久久久人妻一区精品色欧美 | 日韩在线不卡免费视频一区 | 国产av一区二区三区最新精品 | 免费无码午夜福利片69 | 久久久久国色av免费观看性色 | 欧美freesex黑人又粗又大 | 小泽玛莉亚一区二区视频在线 | 亚洲日韩一区二区三区 | 99久久婷婷国产综合精品青草免费 | 国产人妻精品一区二区三区不卡 | 野狼第一精品社区 | 欧美国产日韩久久mv | 亚洲精品久久久久久一区二区 | 国产xxx69麻豆国语对白 | 国产av人人夜夜澡人人爽麻豆 | 中文精品久久久久人妻不卡 | 学生妹亚洲一区二区 | 欧美精品在线观看 | 久久午夜夜伦鲁鲁片无码免费 | 久久精品国产99久久6动漫 | 亚洲人亚洲人成电影网站色 | 国产内射爽爽大片视频社区在线 | 性史性农村dvd毛片 | 纯爱无遮挡h肉动漫在线播放 | 国产女主播喷水视频在线观看 | 日韩精品无码一区二区中文字幕 | 香蕉久久久久久av成人 | 精品久久久无码人妻字幂 | 欧美喷潮久久久xxxxx | 久久zyz资源站无码中文动漫 | 兔费看少妇性l交大片免费 | 亚洲精品综合五月久久小说 | 在线播放免费人成毛片乱码 | 樱花草在线播放免费中文 | 理论片87福利理论电影 | 露脸叫床粗话东北少妇 | 美女扒开屁股让男人桶 | 国精品人妻无码一区二区三区蜜柚 | 亚洲春色在线视频 | 国产尤物精品视频 | 中文字幕乱码中文乱码51精品 | 欧美精品免费观看二区 | 亚洲无人区一区二区三区 | 亚洲国产欧美国产综合一区 | 领导边摸边吃奶边做爽在线观看 | 亚洲熟妇色xxxxx亚洲 | 青青草原综合久久大伊人精品 | 国产精品手机免费 | 国产激情无码一区二区app | 久久午夜夜伦鲁鲁片无码免费 | 国内揄拍国内精品人妻 | 伊人久久大香线蕉午夜 | 久久综合香蕉国产蜜臀av | 亚洲成在人网站无码天堂 | 日本高清一区免费中文视频 | 亚洲中文字幕av在天堂 | 国产午夜亚洲精品不卡下载 | 露脸叫床粗话东北少妇 | 精品国产青草久久久久福利 | 国产亲子乱弄免费视频 | 久久亚洲日韩精品一区二区三区 | 图片区 小说区 区 亚洲五月 | 国产激情无码一区二区app | 77777熟女视频在线观看 а天堂中文在线官网 | 国产激情艳情在线看视频 | 国产亚洲美女精品久久久2020 | 亚洲国产精品一区二区美利坚 | 曰韩无码二三区中文字幕 | 免费观看又污又黄的网站 | 久久午夜无码鲁丝片 | 色综合视频一区二区三区 | 真人与拘做受免费视频一 | 男人的天堂2018无码 | 国产精品二区一区二区aⅴ污介绍 | 扒开双腿疯狂进出爽爽爽视频 | 欧美丰满熟妇xxxx | 欧美精品一区二区精品久久 | 激情亚洲一区国产精品 | 999久久久国产精品消防器材 | 性做久久久久久久久 | 大地资源网第二页免费观看 | 人人妻人人澡人人爽欧美一区九九 | 无码人妻少妇伦在线电影 | 蜜桃视频插满18在线观看 | 亚洲国产精华液网站w | 香港三级日本三级妇三级 | 无码成人精品区在线观看 | 亚洲男人av香蕉爽爽爽爽 | 国产精品第一区揄拍无码 | 亚洲精品美女久久久久久久 | 男人和女人高潮免费网站 | 中文毛片无遮挡高清免费 | 中文无码伦av中文字幕 | 亚洲国产欧美国产综合一区 | 国产偷国产偷精品高清尤物 | 亚洲七七久久桃花影院 | 少妇人妻偷人精品无码视频 | 免费无码午夜福利片69 | 免费人成网站视频在线观看 | 2019nv天堂香蕉在线观看 | 中文字幕人成乱码熟女app | a在线观看免费网站大全 | 亚洲国产欧美国产综合一区 | 黑人玩弄人妻中文在线 | а天堂中文在线官网 | 少妇人妻偷人精品无码视频 | 夜先锋av资源网站 | 99久久人妻精品免费二区 | 中文字幕人妻丝袜二区 | 午夜男女很黄的视频 | 欧美阿v高清资源不卡在线播放 | 久久www免费人成人片 | 国产精品久久久av久久久 | 永久免费观看国产裸体美女 | 中文字幕无码av激情不卡 | 亚洲精品一区国产 | 国产午夜福利亚洲第一 | 成人免费无码大片a毛片 | 亚洲国产精品无码一区二区三区 | 丰满护士巨好爽好大乳 | 亚洲欧美国产精品专区久久 | 骚片av蜜桃精品一区 | 野外少妇愉情中文字幕 | 爱做久久久久久 | 亚洲国产精品成人久久蜜臀 | 欧美野外疯狂做受xxxx高潮 | 在线播放免费人成毛片乱码 | 国产精品无码久久av | 精品久久久久香蕉网 | 牲欲强的熟妇农村老妇女视频 | 少妇被黑人到高潮喷出白浆 | 精品无码成人片一区二区98 | 久久精品一区二区三区四区 | 日本一区二区更新不卡 | 一本久久a久久精品亚洲 | 欧美熟妇另类久久久久久多毛 | 最新国产麻豆aⅴ精品无码 | 国产超碰人人爽人人做人人添 | 国产福利视频一区二区 | 精品夜夜澡人妻无码av蜜桃 | 正在播放老肥熟妇露脸 | 成人无码影片精品久久久 | 最近中文2019字幕第二页 | 国产乱人伦偷精品视频 | 天海翼激烈高潮到腰振不止 | 人妻少妇精品久久 | 亚洲日韩一区二区 | 精品偷自拍另类在线观看 | 无码av中文字幕免费放 | 久久精品国产一区二区三区肥胖 | 中文毛片无遮挡高清免费 | 久久人人97超碰a片精品 | 少妇被粗大的猛进出69影院 | 日日麻批免费40分钟无码 | 亚洲小说图区综合在线 | 无码乱肉视频免费大全合集 | 亚洲日韩一区二区三区 | 中文字幕无码人妻少妇免费 | 一个人免费观看的www视频 | 久久99久久99精品中文字幕 | 高清无码午夜福利视频 | 亚洲精品国产a久久久久久 | 熟妇人妻无乱码中文字幕 | 我要看www免费看插插视频 | 欧美性色19p | 香港三级日本三级妇三级 | 国产麻豆精品精东影业av网站 | 久9re热视频这里只有精品 | 国产av一区二区精品久久凹凸 | 亚洲色偷偷偷综合网 | 国产乱子伦视频在线播放 | 天堂无码人妻精品一区二区三区 | 天堂а√在线中文在线 | 欧美性猛交xxxx富婆 | 成人亚洲精品久久久久 | 2020久久香蕉国产线看观看 | 亚洲 另类 在线 欧美 制服 | 国産精品久久久久久久 | 欧美人妻一区二区三区 | 美女张开腿让人桶 | 成 人影片 免费观看 | 爽爽影院免费观看 | 国产成人av免费观看 | 亚洲一区二区三区四区 | 国产精品久免费的黄网站 | 88国产精品欧美一区二区三区 | a片在线免费观看 | 国内精品久久久久久中文字幕 | 亚洲一区二区三区含羞草 | 国产三级久久久精品麻豆三级 | 性欧美疯狂xxxxbbbb | aa片在线观看视频在线播放 | 欧美 丝袜 自拍 制服 另类 | 日本熟妇人妻xxxxx人hd | 国产精品香蕉在线观看 | 国产精品手机免费 | 国产精品久久久久9999小说 | 久久久久免费精品国产 | 丰满人妻被黑人猛烈进入 | 1000部啪啪未满十八勿入下载 | 亚洲日本va午夜在线电影 | 亚洲熟妇色xxxxx亚洲 | 午夜理论片yy44880影院 | 精品久久久久久人妻无码中文字幕 | 国产午夜精品一区二区三区嫩草 | 久久人妻内射无码一区三区 | 无码人妻丰满熟妇区五十路百度 | 欧美熟妇另类久久久久久不卡 | 国产精品二区一区二区aⅴ污介绍 | 亚洲欧美日韩国产精品一区二区 | 久久亚洲日韩精品一区二区三区 | 免费无码肉片在线观看 | 300部国产真实乱 | 久久亚洲日韩精品一区二区三区 | av在线亚洲欧洲日产一区二区 | 国产香蕉97碰碰久久人人 | 国产麻豆精品精东影业av网站 | 激情亚洲一区国产精品 | 亚洲人成人无码网www国产 | 亚洲欧美精品aaaaaa片 | 亚洲aⅴ无码成人网站国产app | 国产黄在线观看免费观看不卡 | 蜜桃臀无码内射一区二区三区 | 精品一区二区不卡无码av | 国产无遮挡又黄又爽免费视频 | 熟妇人妻无乱码中文字幕 | 久久99精品久久久久婷婷 | 99麻豆久久久国产精品免费 | 国产精品人妻一区二区三区四 | 日本大乳高潮视频在线观看 | 沈阳熟女露脸对白视频 | 国产做国产爱免费视频 | 精品欧洲av无码一区二区三区 | 国产一区二区三区四区五区加勒比 | 久久精品国产亚洲精品 | 巨爆乳无码视频在线观看 | 欧美真人作爱免费视频 | 无码人妻丰满熟妇区毛片18 | 中文字幕 人妻熟女 | 丰满肥臀大屁股熟妇激情视频 | 国产精品丝袜黑色高跟鞋 | 极品尤物被啪到呻吟喷水 | 女人被爽到呻吟gif动态图视看 | 亚洲爆乳大丰满无码专区 | 性欧美疯狂xxxxbbbb | 欧美丰满老熟妇xxxxx性 | 精品国产aⅴ无码一区二区 | 娇妻被黑人粗大高潮白浆 | 午夜福利电影 | 亚洲日本va中文字幕 | 九九热爱视频精品 | 日本一卡二卡不卡视频查询 | 麻豆md0077饥渴少妇 | 99久久人妻精品免费一区 | 熟妇人妻无码xxx视频 | 色老头在线一区二区三区 | 午夜无码区在线观看 | 欧美乱妇无乱码大黄a片 | 一本色道久久综合亚洲精品不卡 | 国产激情综合五月久久 | 精品偷拍一区二区三区在线看 | 午夜熟女插插xx免费视频 | 最近中文2019字幕第二页 | 亚洲人亚洲人成电影网站色 | 日本精品高清一区二区 | 亚洲爆乳精品无码一区二区三区 | 精品国产一区二区三区四区 | 久久精品国产一区二区三区 | 少女韩国电视剧在线观看完整 | 中文字幕无码免费久久9一区9 | 色综合久久网 | 激情内射亚州一区二区三区爱妻 | 在线精品国产一区二区三区 | 久久 国产 尿 小便 嘘嘘 | 亚洲成av人在线观看网址 | 色诱久久久久综合网ywww | 亚洲精品成a人在线观看 | 国产网红无码精品视频 | 亚洲欧美色中文字幕在线 | 午夜福利一区二区三区在线观看 | 任你躁在线精品免费 | 中文久久乱码一区二区 | 国产精品99久久精品爆乳 | 76少妇精品导航 | 97色伦图片97综合影院 | 精品国产一区二区三区av 性色 | 精品国产一区二区三区av 性色 | 欧美zoozzooz性欧美 | 色欲综合久久中文字幕网 | 小sao货水好多真紧h无码视频 | 久久久久久av无码免费看大片 | 欧美国产日韩亚洲中文 | 亚洲日韩av片在线观看 | 久久午夜无码鲁丝片 | 丰满人妻一区二区三区免费视频 | 久久久久人妻一区精品色欧美 | 亲嘴扒胸摸屁股激烈网站 | 亚洲成av人综合在线观看 | 一本久道久久综合婷婷五月 | 国产精品国产三级国产专播 | 国产午夜亚洲精品不卡 | 成人一区二区免费视频 | 中文字幕无码热在线视频 | 人妻无码αv中文字幕久久琪琪布 | 女人被爽到呻吟gif动态图视看 | 亲嘴扒胸摸屁股激烈网站 | 捆绑白丝粉色jk震动捧喷白浆 | 最近中文2019字幕第二页 | 精品无码国产一区二区三区av | 亚洲精品中文字幕乱码 | 久久综合色之久久综合 | 久久www免费人成人片 | 日日摸天天摸爽爽狠狠97 | 欧美日韩一区二区免费视频 | 人妻尝试又大又粗久久 | 熟妇人妻无乱码中文字幕 | 精品一区二区三区波多野结衣 | 国产精品99久久精品爆乳 | 荫蒂被男人添的好舒服爽免费视频 | 扒开双腿吃奶呻吟做受视频 | 少妇久久久久久人妻无码 | 玩弄少妇高潮ⅹxxxyw | 妺妺窝人体色www在线小说 | 欧美性生交xxxxx久久久 | 麻豆国产97在线 | 欧洲 | 精品欧美一区二区三区久久久 | 亚洲一区二区三区无码久久 | 欧美第一黄网免费网站 | 欧美阿v高清资源不卡在线播放 | 色婷婷av一区二区三区之红樱桃 | 国产欧美亚洲精品a | 国产成人无码午夜视频在线观看 | 西西人体www44rt大胆高清 | 日韩人妻无码一区二区三区久久99 | 日韩av无码一区二区三区 | 亚洲人成无码网www | 无码中文字幕色专区 | 狂野欧美性猛xxxx乱大交 | 中文字幕无码日韩专区 | 四虎永久在线精品免费网址 | av小次郎收藏 | 午夜不卡av免费 一本久久a久久精品vr综合 | 在线看片无码永久免费视频 | 午夜理论片yy44880影院 | 一本久道久久综合狠狠爱 | 国产婷婷色一区二区三区在线 | 人妻少妇精品视频专区 | 99久久精品日本一区二区免费 | 亚洲欧美日韩国产精品一区二区 | 一个人免费观看的www视频 | 人妻少妇被猛烈进入中文字幕 | 国产精品香蕉在线观看 | 中文字幕日韩精品一区二区三区 | 99久久99久久免费精品蜜桃 | 亚洲精品中文字幕 | 亚洲自偷自偷在线制服 | 国产国产精品人在线视 | 东京无码熟妇人妻av在线网址 | 精品国产青草久久久久福利 | av在线亚洲欧洲日产一区二区 | 成人一区二区免费视频 | 亚洲一区二区三区在线观看网站 | 最近中文2019字幕第二页 | 国产suv精品一区二区五 | 无码吃奶揉捏奶头高潮视频 | 久久熟妇人妻午夜寂寞影院 | 蜜桃视频韩日免费播放 | 中国大陆精品视频xxxx | √天堂中文官网8在线 | 亚洲无人区一区二区三区 | 色欲av亚洲一区无码少妇 | www成人国产高清内射 | 水蜜桃av无码 | 国产va免费精品观看 | 国产熟女一区二区三区四区五区 | 久久国产自偷自偷免费一区调 | 国产亚洲欧美日韩亚洲中文色 | 国内精品一区二区三区不卡 | 无码人妻久久一区二区三区不卡 | 久久99精品久久久久久动态图 | 国产精品亚洲五月天高清 | 亚洲第一网站男人都懂 | 女人被爽到呻吟gif动态图视看 | 国产一区二区不卡老阿姨 | 亚洲乱码日产精品bd | 成人精品一区二区三区中文字幕 | 亚洲熟妇色xxxxx欧美老妇 | www一区二区www免费 | 亚洲成a人片在线观看无码 | 99国产精品白浆在线观看免费 | 午夜福利试看120秒体验区 | 精品无码国产自产拍在线观看蜜 | 久久国产劲爆∧v内射 | 久久视频在线观看精品 | 国产免费无码一区二区视频 | 伊在人天堂亚洲香蕉精品区 | 日日天日日夜日日摸 | 欧美肥老太牲交大战 | 伊在人天堂亚洲香蕉精品区 | 男女爱爱好爽视频免费看 | 久久人人爽人人爽人人片av高清 | 久久综合香蕉国产蜜臀av | 久久久久成人精品免费播放动漫 | 成人精品一区二区三区中文字幕 | 国产精品沙发午睡系列 | 精品少妇爆乳无码av无码专区 | 国精产品一品二品国精品69xx | 国产成人无码av一区二区 | 成 人影片 免费观看 | 人妻无码久久精品人妻 | 婷婷五月综合激情中文字幕 | 日韩无套无码精品 | 永久免费精品精品永久-夜色 | 99久久精品无码一区二区毛片 | 久久99精品国产麻豆 | 亚洲色欲色欲欲www在线 | 99久久人妻精品免费一区 | 色狠狠av一区二区三区 | 妺妺窝人体色www婷婷 | 成人综合网亚洲伊人 | 欧美激情综合亚洲一二区 | 国产综合久久久久鬼色 | 欧美黑人性暴力猛交喷水 | 亚洲人成影院在线观看 | 激情内射亚州一区二区三区爱妻 | 亚洲精品一区二区三区四区五区 | 小鲜肉自慰网站xnxx | 少妇被粗大的猛进出69影院 | 性欧美牲交xxxxx视频 | 狠狠色噜噜狠狠狠7777奇米 | 波多野结衣一区二区三区av免费 | 久久久久成人片免费观看蜜芽 | 荫蒂被男人添的好舒服爽免费视频 | 色婷婷av一区二区三区之红樱桃 | 熟妇人妻无乱码中文字幕 | 中文字幕亚洲情99在线 | 性做久久久久久久免费看 | 色一情一乱一伦一区二区三欧美 | 无码一区二区三区在线观看 | 熟妇人妻无码xxx视频 | 国产精品va在线播放 | 中文字幕日产无线码一区 | 无码国产激情在线观看 | 婷婷五月综合缴情在线视频 | 天天拍夜夜添久久精品大 | 日本免费一区二区三区最新 | 精品久久久久久人妻无码中文字幕 | 国产美女极度色诱视频www | 国产成人一区二区三区在线观看 | 免费人成在线观看网站 | 国产精品久免费的黄网站 | 国产成人一区二区三区在线观看 | 亚洲熟妇色xxxxx欧美老妇 | 思思久久99热只有频精品66 | 牲欲强的熟妇农村老妇女视频 | 国产精品欧美成人 | 日本精品高清一区二区 | 无码人妻精品一区二区三区不卡 | 亚洲第一无码av无码专区 | 激情五月综合色婷婷一区二区 | 欧美午夜特黄aaaaaa片 | 精品日本一区二区三区在线观看 | 成人影院yy111111在线观看 | 久久精品女人天堂av免费观看 | 成在人线av无码免观看麻豆 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 久激情内射婷内射蜜桃人妖 | 国产人妻久久精品二区三区老狼 | 丰满人妻翻云覆雨呻吟视频 | 中国大陆精品视频xxxx | 亚洲精品国产精品乱码视色 | 亚洲国产欧美国产综合一区 | 色欲综合久久中文字幕网 | 少妇的肉体aa片免费 | 男女性色大片免费网站 | 丰满诱人的人妻3 | 强奷人妻日本中文字幕 | 久久久久亚洲精品男人的天堂 | 婷婷色婷婷开心五月四房播播 | 理论片87福利理论电影 | 丰满妇女强制高潮18xxxx | 中文字幕av无码一区二区三区电影 | av人摸人人人澡人人超碰下载 | 九月婷婷人人澡人人添人人爽 | 性做久久久久久久免费看 | 国产免费观看黄av片 | av香港经典三级级 在线 | 国产精品无码mv在线观看 | 性史性农村dvd毛片 | 亚洲男女内射在线播放 | 欧美精品免费观看二区 | 大乳丰满人妻中文字幕日本 | 97无码免费人妻超级碰碰夜夜 | 久久久久久av无码免费看大片 | 亚洲一区二区三区四区 | 我要看www免费看插插视频 | 97无码免费人妻超级碰碰夜夜 | 久久国内精品自在自线 | 久久国产36精品色熟妇 | 欧美xxxx黑人又粗又长 | 一个人看的www免费视频在线观看 | 国产9 9在线 | 中文 | 三上悠亚人妻中文字幕在线 | 99久久久无码国产精品免费 | 人人澡人摸人人添 | 亚洲精品一区二区三区在线 | 亚洲の无码国产の无码影院 | 色婷婷香蕉在线一区二区 | 精品国产麻豆免费人成网站 | 久久久国产精品无码免费专区 | 香蕉久久久久久av成人 | 99久久人妻精品免费二区 | 好男人社区资源 | 中文无码精品a∨在线观看不卡 | 99精品久久毛片a片 | 免费乱码人妻系列无码专区 | 中文字幕无码视频专区 | 国产av人人夜夜澡人人爽麻豆 | 亚洲大尺度无码无码专区 | 国产精品久久福利网站 | 日本熟妇人妻xxxxx人hd | 亚洲国产欧美国产综合一区 | 国产精品18久久久久久麻辣 | 无码一区二区三区在线 | 丰满少妇人妻久久久久久 | 丰腴饱满的极品熟妇 | 内射后入在线观看一区 | 动漫av一区二区在线观看 | 午夜福利试看120秒体验区 | 1000部夫妻午夜免费 | 久久精品中文字幕大胸 | 亚洲午夜福利在线观看 | 久久精品国产大片免费观看 | 国产成人无码一二三区视频 | 欧美xxxx黑人又粗又长 | 亲嘴扒胸摸屁股激烈网站 | 天天躁夜夜躁狠狠是什么心态 | 亚洲欧美国产精品专区久久 | 国产香蕉尹人综合在线观看 | 天天做天天爱天天爽综合网 | 久久午夜无码鲁丝片午夜精品 | 久久精品国产大片免费观看 | 亚洲精品国产品国语在线观看 | 亚洲日韩中文字幕在线播放 | 任你躁国产自任一区二区三区 | 国产乱人偷精品人妻a片 | 99国产精品白浆在线观看免费 | 天天摸天天透天天添 | 中文精品无码中文字幕无码专区 | 无码成人精品区在线观看 | 18无码粉嫩小泬无套在线观看 | 好爽又高潮了毛片免费下载 | 欧美xxxx黑人又粗又长 | 一本色道婷婷久久欧美 | 久久天天躁夜夜躁狠狠 | 桃花色综合影院 | 亚洲精品久久久久中文第一幕 | 人妻中文无码久热丝袜 | 午夜精品一区二区三区在线观看 | 最近的中文字幕在线看视频 | 国产麻豆精品一区二区三区v视界 | 成人女人看片免费视频放人 | 无码av岛国片在线播放 | 亚洲精品一区二区三区四区五区 | 久久99精品久久久久久动态图 | 亚洲爆乳无码专区 | 午夜嘿嘿嘿影院 | 日韩av无码中文无码电影 | 久久国产精品二国产精品 | 日韩欧美群交p片內射中文 | 精品国精品国产自在久国产87 | 久久久国产一区二区三区 | 一本久道久久综合狠狠爱 | 欧美人与物videos另类 | 亚欧洲精品在线视频免费观看 | 激情内射亚州一区二区三区爱妻 | 亚洲精品一区二区三区在线 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产精品久久国产精品99 | 对白脏话肉麻粗话av | 亚洲日韩av一区二区三区四区 | 精品 日韩 国产 欧美 视频 | 国产成人久久精品流白浆 | 日韩少妇白浆无码系列 | 色综合久久88色综合天天 | 久久久久久国产精品无码下载 | 欧美 日韩 人妻 高清 中文 | 国产三级精品三级男人的天堂 | 4hu四虎永久在线观看 | 伊人久久大香线蕉午夜 | 欧美怡红院免费全部视频 | 国产亚洲人成在线播放 | 国产激情艳情在线看视频 | 精品无码av一区二区三区 | 精品人人妻人人澡人人爽人人 | 日本肉体xxxx裸交 | 啦啦啦www在线观看免费视频 | 在线天堂新版最新版在线8 | 成人无码精品一区二区三区 | 中文字幕无码av激情不卡 | 国产香蕉97碰碰久久人人 | 久久人人爽人人爽人人片av高清 | 欧美亚洲日韩国产人成在线播放 | 在线天堂新版最新版在线8 | 无码av中文字幕免费放 | 成人一在线视频日韩国产 | 精品一区二区三区波多野结衣 | 天天躁夜夜躁狠狠是什么心态 | 宝宝好涨水快流出来免费视频 | 国产av久久久久精东av | 亚洲熟悉妇女xxx妇女av | 激情亚洲一区国产精品 | 国产精品久久国产精品99 | 亚洲色大成网站www国产 | 亚洲色欲久久久综合网东京热 | 欧美激情一区二区三区成人 | 欧美丰满熟妇xxxx性ppx人交 | 日本一区二区更新不卡 | 久久综合香蕉国产蜜臀av | 东京一本一道一二三区 | 永久免费精品精品永久-夜色 | 强伦人妻一区二区三区视频18 | 久久精品人人做人人综合 | 中国大陆精品视频xxxx | 欧美精品无码一区二区三区 | 亚洲色偷偷偷综合网 | 日本www一道久久久免费榴莲 | 草草网站影院白丝内射 | 老熟妇乱子伦牲交视频 | 亚洲综合另类小说色区 | 无码播放一区二区三区 | 性欧美牲交xxxxx视频 | 国产精品久久久久9999小说 | 日本欧美一区二区三区乱码 | 55夜色66夜色国产精品视频 | 成人无码视频在线观看网站 | 纯爱无遮挡h肉动漫在线播放 | 国产猛烈高潮尖叫视频免费 | 欧美色就是色 | √天堂资源地址中文在线 | 男女超爽视频免费播放 | 日产精品高潮呻吟av久久 | 成人免费无码大片a毛片 | 亚洲熟妇色xxxxx欧美老妇y | 日日碰狠狠躁久久躁蜜桃 | 国产性生交xxxxx无码 | 婷婷五月综合缴情在线视频 | 在线观看欧美一区二区三区 | 国产真实乱对白精彩久久 | 一本加勒比波多野结衣 | 日本免费一区二区三区最新 | 国产97在线 | 亚洲 | 精品久久综合1区2区3区激情 | 亚洲人成网站免费播放 | 美女黄网站人色视频免费国产 | 国产另类ts人妖一区二区 | 日欧一片内射va在线影院 | 国产激情艳情在线看视频 | 日本丰满护士爆乳xxxx | 久久午夜无码鲁丝片 | 性啪啪chinese东北女人 | 日本免费一区二区三区最新 | 荫蒂添的好舒服视频囗交 | 成年美女黄网站色大免费全看 | 18精品久久久无码午夜福利 | 国产精品欧美成人 | 亚洲色偷偷男人的天堂 | 天堂无码人妻精品一区二区三区 | 97人妻精品一区二区三区 | 欧美人与动性行为视频 | 精品 日韩 国产 欧美 视频 | 国产成人综合色在线观看网站 | 一本精品99久久精品77 | 成人无码精品1区2区3区免费看 | 亚洲呦女专区 | 人人妻人人澡人人爽欧美一区九九 | 免费无码肉片在线观看 | 欧美一区二区三区 | 欧洲极品少妇 | 男女下面进入的视频免费午夜 | 精品一二三区久久aaa片 | 精品aⅴ一区二区三区 | 精品无人国产偷自产在线 | 国产成人精品优优av | 午夜丰满少妇性开放视频 | 无码av免费一区二区三区试看 | 无码国内精品人妻少妇 | 亚洲国产一区二区三区在线观看 | 又黄又爽又色的视频 | 日韩人妻无码一区二区三区久久99 | 天堂无码人妻精品一区二区三区 | 成人综合网亚洲伊人 | 精品成在人线av无码免费看 | 性生交片免费无码看人 | 成人毛片一区二区 | 亚洲精品国产第一综合99久久 | 久久精品国产精品国产精品污 | 人妻插b视频一区二区三区 | 久久久久久久久888 | 亚洲国产综合无码一区 | 小鲜肉自慰网站xnxx | 国产在线精品一区二区高清不卡 | 久久99精品国产麻豆 | 人妻天天爽夜夜爽一区二区 | 欧美 丝袜 自拍 制服 另类 | 日韩亚洲欧美中文高清在线 | 综合激情五月综合激情五月激情1 | 99国产欧美久久久精品 | 亚洲日韩av一区二区三区中文 | 久久久精品国产sm最大网站 | 国产亚洲欧美在线专区 | 国产乱人伦偷精品视频 | 亚洲乱码中文字幕在线 | 天天躁日日躁狠狠躁免费麻豆 | 免费人成在线视频无码 | 国产香蕉尹人视频在线 | 波多野结衣高清一区二区三区 | 精品aⅴ一区二区三区 | 久久国语露脸国产精品电影 | 亚洲乱码日产精品bd | 亚洲啪av永久无码精品放毛片 | 偷窥村妇洗澡毛毛多 | 少妇无码一区二区二三区 | 亚洲 另类 在线 欧美 制服 | 亚洲精品成a人在线观看 | 欧美激情一区二区三区成人 | 久久久亚洲欧洲日产国码αv | 欧美人与禽zoz0性伦交 | 亚洲国产高清在线观看视频 | 在线精品国产一区二区三区 | 图片区 小说区 区 亚洲五月 | 国产精品多人p群无码 | 国产乱人伦偷精品视频 | 2019午夜福利不卡片在线 | 欧美喷潮久久久xxxxx | 欧美兽交xxxx×视频 | 色婷婷欧美在线播放内射 | 亚洲精品一区二区三区在线 | 天天躁日日躁狠狠躁免费麻豆 | 鲁鲁鲁爽爽爽在线视频观看 | 久久视频在线观看精品 | 麻花豆传媒剧国产免费mv在线 | 中文字幕乱码亚洲无线三区 | 精品一区二区三区无码免费视频 | 人妻体内射精一区二区三四 | 久久久中文字幕日本无吗 | 国产九九九九九九九a片 | 偷窥村妇洗澡毛毛多 | 无码人中文字幕 | 性做久久久久久久免费看 | 高潮毛片无遮挡高清免费视频 | 亚洲一区二区三区偷拍女厕 | 最新国产麻豆aⅴ精品无码 | 天下第一社区视频www日本 | 97无码免费人妻超级碰碰夜夜 | 欧美人妻一区二区三区 | 亚洲小说图区综合在线 | 亚洲人成人无码网www国产 | 久久人人97超碰a片精品 | 精品国产一区二区三区四区在线看 | 日本一区二区三区免费高清 | 99视频精品全部免费免费观看 | 午夜福利一区二区三区在线观看 | 久久久久免费精品国产 | 久久五月精品中文字幕 | 久久久久久av无码免费看大片 | 国产精品嫩草久久久久 | 无码播放一区二区三区 | 国产网红无码精品视频 | 亚洲中文字幕无码中文字在线 | 久久精品国产精品国产精品污 | 黑人大群体交免费视频 | аⅴ资源天堂资源库在线 | 成人欧美一区二区三区黑人免费 | 久久综合九色综合欧美狠狠 | 大肉大捧一进一出视频出来呀 | 在线亚洲高清揄拍自拍一品区 | 娇妻被黑人粗大高潮白浆 | 日本爽爽爽爽爽爽在线观看免 | 丰满岳乱妇在线观看中字无码 | 午夜无码区在线观看 | 小泽玛莉亚一区二区视频在线 | 一本色道久久综合亚洲精品不卡 | 国产性生大片免费观看性 | 日日鲁鲁鲁夜夜爽爽狠狠 | 风流少妇按摩来高潮 | 女人和拘做爰正片视频 | a片免费视频在线观看 | 无码人妻出轨黑人中文字幕 | 老熟女乱子伦 | 国产精品手机免费 | 白嫩日本少妇做爰 | 成人免费视频视频在线观看 免费 | 亚洲国产午夜精品理论片 | 人妻互换免费中文字幕 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 骚片av蜜桃精品一区 | 亚洲一区二区三区香蕉 | 特级做a爰片毛片免费69 | 麻花豆传媒剧国产免费mv在线 | 黑人巨大精品欧美一区二区 | 午夜丰满少妇性开放视频 | 在线精品国产一区二区三区 | 波多野结衣一区二区三区av免费 | 国产激情精品一区二区三区 | 大乳丰满人妻中文字幕日本 | 亚洲一区二区三区含羞草 | 伊人久久大香线蕉亚洲 | 天干天干啦夜天干天2017 | 六十路熟妇乱子伦 | 亚洲午夜福利在线观看 | 亚洲精品综合一区二区三区在线 | 亚洲一区二区观看播放 | 久久亚洲a片com人成 | 国产精品亚洲综合色区韩国 | 国产成人人人97超碰超爽8 | 国产小呦泬泬99精品 | 久久无码人妻影院 | 在线精品亚洲一区二区 | 色 综合 欧美 亚洲 国产 | 亚洲日韩av一区二区三区中文 | 久久久久久国产精品无码下载 | 激情人妻另类人妻伦 | 亚洲s码欧洲m码国产av | 成人无码影片精品久久久 | 国产精品亚洲五月天高清 | 国产精品理论片在线观看 | 亚洲经典千人经典日产 | 国产午夜亚洲精品不卡下载 | 99精品国产综合久久久久五月天 | 国产日产欧产精品精品app | 成 人 网 站国产免费观看 | 日本精品人妻无码免费大全 | 国产精品自产拍在线观看 | 精品久久综合1区2区3区激情 | 少妇无码吹潮 | 男女超爽视频免费播放 | 国产亲子乱弄免费视频 | 久久久国产一区二区三区 | 中文字幕av无码一区二区三区电影 | 国产 精品 自在自线 | 欧美老人巨大xxxx做受 | 在线 国产 欧美 亚洲 天堂 | 亚洲国产高清在线观看视频 | 精品无码国产自产拍在线观看蜜 | 午夜精品一区二区三区的区别 | 国产suv精品一区二区五 | 野外少妇愉情中文字幕 | 九九久久精品国产免费看小说 | 精品久久8x国产免费观看 | 精品国产青草久久久久福利 | 少妇无码av无码专区在线观看 | 亚洲成a人一区二区三区 | 亚洲综合另类小说色区 | 成人毛片一区二区 | 少妇邻居内射在线 | 99久久精品无码一区二区毛片 | 无码av岛国片在线播放 | 久久精品女人的天堂av | 色综合久久久无码网中文 | 国产精品人妻一区二区三区四 | 熟妇人妻中文av无码 | 波多野结衣aⅴ在线 | 国产亚洲人成在线播放 | 亚洲色在线无码国产精品不卡 | 三级4级全黄60分钟 | 日本爽爽爽爽爽爽在线观看免 | 国内精品人妻无码久久久影院 | 波多野结衣高清一区二区三区 | 国产精品.xx视频.xxtv | 亚洲国产精品无码一区二区三区 | 久久亚洲中文字幕精品一区 | 亚洲精品一区二区三区四区五区 | 欧美人与物videos另类 | 色五月五月丁香亚洲综合网 | 国产精品毛片一区二区 | 久久精品视频在线看15 | 啦啦啦www在线观看免费视频 | 性欧美牲交在线视频 | 亚洲国产精华液网站w | 国产精品怡红院永久免费 | 亚洲国产精品无码久久久久高潮 | 久久精品人人做人人综合试看 | 日本丰满熟妇videos | 欧美人与善在线com | 性欧美熟妇videofreesex | 亚洲区欧美区综合区自拍区 | 国产午夜福利100集发布 | 人妻无码αv中文字幕久久琪琪布 | 免费人成在线观看网站 | 久久五月精品中文字幕 | 久久精品99久久香蕉国产色戒 | 无码纯肉视频在线观看 | 亚洲欧美国产精品专区久久 | 人人爽人人澡人人人妻 | 亚洲阿v天堂在线 | 亚洲成av人影院在线观看 | 理论片87福利理论电影 | 久久国产精品二国产精品 | 久久久www成人免费毛片 | 亚洲日韩av一区二区三区中文 | 国产精品人人爽人人做我的可爱 | 亚洲成av人综合在线观看 | 久久综合网欧美色妞网 | 国产免费久久久久久无码 | 成人无码视频免费播放 | 98国产精品综合一区二区三区 | 国产精品欧美成人 | 日韩精品乱码av一区二区 | 国产农村妇女高潮大叫 | 久久精品女人的天堂av | 网友自拍区视频精品 | av在线亚洲欧洲日产一区二区 | 18禁黄网站男男禁片免费观看 | 国产精品美女久久久网av | 久久人人97超碰a片精品 | 亚洲乱码中文字幕在线 | 精品偷自拍另类在线观看 | 99国产欧美久久久精品 | 成人免费无码大片a毛片 | 人妻有码中文字幕在线 | 国产美女极度色诱视频www | 99久久亚洲精品无码毛片 | 理论片87福利理论电影 | 啦啦啦www在线观看免费视频 | 久9re热视频这里只有精品 | 免费看男女做好爽好硬视频 | 亚洲色欲久久久综合网东京热 | yw尤物av无码国产在线观看 | 亚洲成av人在线观看网址 | 夜精品a片一区二区三区无码白浆 | 国产精品香蕉在线观看 | 久久天天躁夜夜躁狠狠 | 性欧美大战久久久久久久 | 色五月丁香五月综合五月 | 1000部夫妻午夜免费 | 国产午夜亚洲精品不卡下载 | 国产午夜手机精彩视频 | 99麻豆久久久国产精品免费 | 一区二区三区高清视频一 | 亚洲一区二区三区无码久久 | 国产人妻久久精品二区三区老狼 | 男人扒开女人内裤强吻桶进去 | 国产精品久久国产三级国 | 日日摸天天摸爽爽狠狠97 | 久久综合久久自在自线精品自 | 伊人久久大香线焦av综合影院 | 午夜男女很黄的视频 | 377p欧洲日本亚洲大胆 | 久久精品国产日本波多野结衣 | 国产偷国产偷精品高清尤物 | 亚洲码国产精品高潮在线 | 欧美日本免费一区二区三区 | 老头边吃奶边弄进去呻吟 | 红桃av一区二区三区在线无码av | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产精品高潮呻吟av久久4虎 | 日日干夜夜干 | 精品无人国产偷自产在线 | 人妻少妇精品无码专区二区 | 东京无码熟妇人妻av在线网址 | 国产精品久久久久无码av色戒 | 精品人妻人人做人人爽 | 人人妻人人澡人人爽欧美精品 | 99久久精品日本一区二区免费 | 欧美自拍另类欧美综合图片区 | 亚洲 欧美 激情 小说 另类 | 亚洲午夜无码久久 | 国产舌乚八伦偷品w中 | 丰满少妇高潮惨叫视频 | 亚洲日韩一区二区 | 亚洲欧美色中文字幕在线 | 扒开双腿疯狂进出爽爽爽视频 | 成人无码精品一区二区三区 | 强伦人妻一区二区三区视频18 | 精品偷拍一区二区三区在线看 | 老司机亚洲精品影院无码 | 欧美国产日产一区二区 | 国产亚av手机在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 精品一区二区三区无码免费视频 | 精品国产福利一区二区 | 亚洲区欧美区综合区自拍区 | 无码国内精品人妻少妇 | 激情国产av做激情国产爱 | 在线播放亚洲第一字幕 | 色一情一乱一伦一区二区三欧美 | 7777奇米四色成人眼影 | 亚洲综合在线一区二区三区 | 97无码免费人妻超级碰碰夜夜 | 小鲜肉自慰网站xnxx | 国产一区二区三区日韩精品 | 久久精品99久久香蕉国产色戒 | 最新国产麻豆aⅴ精品无码 | 国产特级毛片aaaaaa高潮流水 | 亚洲精品国产精品乱码不卡 | 免费观看激色视频网站 | 亚洲精品久久久久中文第一幕 | 内射巨臀欧美在线视频 | 亚洲欧美国产精品久久 | 亚洲日本一区二区三区在线 | 亚洲日韩精品欧美一区二区 | 色五月丁香五月综合五月 | 黑人巨大精品欧美黑寡妇 | 亚洲乱亚洲乱妇50p | 国产精品人人爽人人做我的可爱 | 久久久久久亚洲精品a片成人 | 国产 浪潮av性色四虎 | 免费无码午夜福利片69 | 亚洲精品成a人在线观看 | 亚洲中文字幕在线无码一区二区 | 亚洲精品国产精品乱码不卡 | 亚洲a无码综合a国产av中文 | 日日躁夜夜躁狠狠躁 | www国产精品内射老师 | 欧美一区二区三区视频在线观看 | 人妻少妇被猛烈进入中文字幕 | 午夜男女很黄的视频 | 夜先锋av资源网站 | 水蜜桃亚洲一二三四在线 | 日本熟妇人妻xxxxx人hd | 粉嫩少妇内射浓精videos | 国产人妻人伦精品1国产丝袜 | 国产sm调教视频在线观看 | 久久精品国产日本波多野结衣 | 久久久精品人妻久久影视 | 成人无码影片精品久久久 | 久久久久亚洲精品男人的天堂 | 欧洲vodafone精品性 | 久激情内射婷内射蜜桃人妖 | 人人妻人人澡人人爽欧美精品 | 国产亚洲美女精品久久久2020 | 国产精品二区一区二区aⅴ污介绍 | 国产精品多人p群无码 | 九九在线中文字幕无码 | 精品一区二区三区无码免费视频 | 天堂一区人妻无码 | 国产精品va在线播放 | 国产午夜无码精品免费看 | 人人妻人人澡人人爽欧美精品 | 大肉大捧一进一出视频出来呀 | 无码人妻精品一区二区三区下载 | 亚洲の无码国产の无码步美 | 日本精品人妻无码77777 天堂一区人妻无码 | 中文字幕av无码一区二区三区电影 | 国产三级精品三级男人的天堂 | 欧美性猛交内射兽交老熟妇 | 黑森林福利视频导航 | 1000部啪啪未满十八勿入下载 | 东京热无码av男人的天堂 | 精品无人区无码乱码毛片国产 | 国产午夜无码精品免费看 | 伊人久久婷婷五月综合97色 | 一本色道久久综合亚洲精品不卡 | 久久亚洲精品中文字幕无男同 | 亚洲人交乣女bbw | 国产一区二区三区四区五区加勒比 | 色五月五月丁香亚洲综合网 | 丰满护士巨好爽好大乳 | 国产成人无码专区 | 国产亚洲精品久久久久久大师 | 特黄特色大片免费播放器图片 | 亚洲中文字幕无码中字 | 欧美丰满老熟妇xxxxx性 | 亚洲成av人片在线观看无码不卡 | 日韩精品a片一区二区三区妖精 | 自拍偷自拍亚洲精品10p | 亚洲精品国偷拍自产在线麻豆 | 理论片87福利理论电影 | 久久久久久亚洲精品a片成人 | 亚洲成色在线综合网站 | 色综合久久久无码中文字幕 | 日本又色又爽又黄的a片18禁 | 欧美freesex黑人又粗又大 | 国产成人无码av片在线观看不卡 | 亚洲成av人片在线观看无码不卡 | 久久99久久99精品中文字幕 | 亚洲 高清 成人 动漫 | 国产成人无码av一区二区 | 久久综合久久自在自线精品自 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 成年女人永久免费看片 | 一本久久a久久精品亚洲 | 国产人妻精品午夜福利免费 | aa片在线观看视频在线播放 | 亚洲色大成网站www国产 | 无码人妻丰满熟妇区毛片18 | 日本又色又爽又黄的a片18禁 | 久久国产精品二国产精品 | 久久99精品久久久久久 | 人妻无码久久精品人妻 | 图片区 小说区 区 亚洲五月 | 激情内射日本一区二区三区 | 精品日本一区二区三区在线观看 | 国产免费观看黄av片 | 国产9 9在线 | 中文 | 中文字幕+乱码+中文字幕一区 | 伊在人天堂亚洲香蕉精品区 | 国产两女互慰高潮视频在线观看 | 九九在线中文字幕无码 | 欧美成人午夜精品久久久 | 国产人妖乱国产精品人妖 | 少妇性荡欲午夜性开放视频剧场 | 撕开奶罩揉吮奶头视频 | 精品夜夜澡人妻无码av蜜桃 | 色欲人妻aaaaaaa无码 | 精品无码av一区二区三区 | 亚拍精品一区二区三区探花 | 欧美人与善在线com | 丰满人妻翻云覆雨呻吟视频 | 欧美日韩一区二区免费视频 | 日本又色又爽又黄的a片18禁 | 亚洲国产精华液网站w | 国产精品无码成人午夜电影 | 亚洲日韩一区二区三区 | 人人澡人人妻人人爽人人蜜桃 | 老子影院午夜精品无码 | 精品久久综合1区2区3区激情 | 欧美放荡的少妇 | 2020最新国产自产精品 | 国产成人久久精品流白浆 | 亚洲色在线无码国产精品不卡 | 国产真实伦对白全集 | 一本大道伊人av久久综合 | 国精产品一品二品国精品69xx | 中文字幕无线码 | 在线 国产 欧美 亚洲 天堂 | 美女扒开屁股让男人桶 | 国产精品va在线播放 | 国产真实伦对白全集 | 伊人色综合久久天天小片 | 日日躁夜夜躁狠狠躁 | 亚洲s色大片在线观看 | 国产精品igao视频网 | 国产真实乱对白精彩久久 | 中文字幕无码免费久久9一区9 | 沈阳熟女露脸对白视频 | 亚洲午夜久久久影院 | 无码人妻精品一区二区三区下载 | av在线亚洲欧洲日产一区二区 | 人人澡人摸人人添 | 久久人人97超碰a片精品 | 秋霞成人午夜鲁丝一区二区三区 | 少妇人妻偷人精品无码视频 | 成在人线av无码免费 | 午夜无码区在线观看 | 夜夜高潮次次欢爽av女 | 日韩av激情在线观看 | 国产成人亚洲综合无码 | 偷窥村妇洗澡毛毛多 | 欧美午夜特黄aaaaaa片 | 国产一区二区三区精品视频 | 精品亚洲成av人在线观看 | 无码帝国www无码专区色综合 | 亚洲狠狠婷婷综合久久 | 综合人妻久久一区二区精品 | 丰满少妇弄高潮了www | 国产人妻精品午夜福利免费 | 亚洲欧美综合区丁香五月小说 | www国产亚洲精品久久久日本 | 午夜不卡av免费 一本久久a久久精品vr综合 | 人妻尝试又大又粗久久 | 精品久久久中文字幕人妻 | 中文字幕日产无线码一区 | 少妇无码一区二区二三区 | 国产suv精品一区二区五 | 一区二区传媒有限公司 | 成人无码精品一区二区三区 | 男人的天堂2018无码 | 一二三四社区在线中文视频 | 成人欧美一区二区三区黑人 | 欧美精品免费观看二区 | 国产日产欧产精品精品app | 又湿又紧又大又爽a视频国产 | 无码人妻丰满熟妇区五十路百度 | 亚洲成av人在线观看网址 | 亚洲一区二区三区四区 | 亚洲一区二区三区在线观看网站 | 国产亚洲日韩欧美另类第八页 | 亚洲日韩乱码中文无码蜜桃臀网站 | 久激情内射婷内射蜜桃人妖 | √天堂资源地址中文在线 | 欧美35页视频在线观看 | 国产av一区二区三区最新精品 | 狠狠色丁香久久婷婷综合五月 | 国产人妻精品一区二区三区 | 国产精品香蕉在线观看 | 国产精品自产拍在线观看 | 欧美乱妇无乱码大黄a片 | 老熟妇仑乱视频一区二区 | 亚洲欧美国产精品久久 | 2019午夜福利不卡片在线 | 亚洲午夜久久久影院 | 久久精品国产99久久6动漫 | 亚洲精品国偷拍自产在线麻豆 | 妺妺窝人体色www在线小说 | 牲欲强的熟妇农村老妇女视频 | 国产精品亚洲а∨无码播放麻豆 | www成人国产高清内射 | 国产女主播喷水视频在线观看 | 久久精品女人的天堂av | 一本大道伊人av久久综合 | 欧美性生交xxxxx久久久 | 久久久久人妻一区精品色欧美 | 久久久精品国产sm最大网站 | 丰满人妻翻云覆雨呻吟视频 | 久久久久国色av免费观看性色 | 午夜精品一区二区三区的区别 | 欧洲熟妇色 欧美 | 在线成人www免费观看视频 | 成人免费视频在线观看 | 中文精品久久久久人妻不卡 | av无码久久久久不卡免费网站 | 国产在热线精品视频 | 亚洲阿v天堂在线 | 免费人成在线观看网站 | 亚洲欧美中文字幕5发布 | 国产精品久久久午夜夜伦鲁鲁 | 99精品久久毛片a片 | 无码国产激情在线观看 | 久久精品丝袜高跟鞋 | 丰满少妇人妻久久久久久 | 亚洲娇小与黑人巨大交 | 午夜福利试看120秒体验区 | 色婷婷综合激情综在线播放 | 国产卡一卡二卡三 | 欧美国产日产一区二区 | 国产九九九九九九九a片 | 久久www免费人成人片 | 免费国产黄网站在线观看 | 中文毛片无遮挡高清免费 | 天天av天天av天天透 | 无码人中文字幕 | 啦啦啦www在线观看免费视频 | 午夜无码区在线观看 | 国产精品丝袜黑色高跟鞋 | 日产国产精品亚洲系列 | 国产一区二区三区精品视频 | 亚洲国产av精品一区二区蜜芽 | 欧美日本精品一区二区三区 | 国产精品无码mv在线观看 | 亚洲成av人片在线观看无码不卡 | 日本一卡二卡不卡视频查询 | 亚洲欧洲中文日韩av乱码 | 亚洲日本va午夜在线电影 | 国产成人精品三级麻豆 | 欧美35页视频在线观看 | 精品国产精品久久一区免费式 | 欧美乱妇无乱码大黄a片 | 国产偷自视频区视频 | 欧美熟妇另类久久久久久多毛 | 国产suv精品一区二区五 | 55夜色66夜色国产精品视频 | 人妻少妇精品视频专区 | 日韩视频 中文字幕 视频一区 | 国产av人人夜夜澡人人爽麻豆 | 粉嫩少妇内射浓精videos | 国产精品对白交换视频 | 欧洲vodafone精品性 | 国内丰满熟女出轨videos | 夜夜高潮次次欢爽av女 | 日本大香伊一区二区三区 | 欧美性猛交内射兽交老熟妇 | 成人性做爰aaa片免费看 | 中文字幕乱妇无码av在线 | 国产成人av免费观看 | 丰满肥臀大屁股熟妇激情视频 | 久久久国产精品无码免费专区 | 亚洲日韩精品欧美一区二区 | 国产一区二区三区四区五区加勒比 | 久久人人爽人人爽人人片av高清 | 人人妻人人澡人人爽人人精品浪潮 | 亚洲人成影院在线无码按摩店 | 日韩精品无码一区二区中文字幕 | 久久国产精品_国产精品 | 亚洲综合伊人久久大杳蕉 | 综合人妻久久一区二区精品 | 黑森林福利视频导航 | 国产成人无码午夜视频在线观看 | 国内精品九九久久久精品 | 国产尤物精品视频 | 中文字幕av无码一区二区三区电影 | 水蜜桃色314在线观看 | 国产精品久久久久7777 | 成年女人永久免费看片 | 日韩人妻无码中文字幕视频 | 黑人大群体交免费视频 | 国产精品怡红院永久免费 | 一本久道高清无码视频 | 免费看男女做好爽好硬视频 | 国产成人亚洲综合无码 | a在线观看免费网站大全 | 久久亚洲国产成人精品性色 | 国产av一区二区精品久久凹凸 | 大肉大捧一进一出视频出来呀 | 国产精品鲁鲁鲁 | 亚洲欧洲中文日韩av乱码 | 无码国模国产在线观看 | 国产成人无码av片在线观看不卡 | 一本无码人妻在中文字幕免费 | 黑人巨大精品欧美黑寡妇 | 久久精品人人做人人综合 | 国产精品18久久久久久麻辣 | 国产成人无码区免费内射一片色欲 | 四虎4hu永久免费 | 少妇的肉体aa片免费 | 丰满少妇人妻久久久久久 | 国产精品无码成人午夜电影 | 无码一区二区三区在线 | 日韩人妻无码中文字幕视频 | 亚洲中文字幕在线观看 | 97精品人妻一区二区三区香蕉 | 蜜臀aⅴ国产精品久久久国产老师 | 天天做天天爱天天爽综合网 | 中文字幕精品av一区二区五区 | 性色av无码免费一区二区三区 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产69精品久久久久app下载 | 国产精品人妻一区二区三区四 | 日韩精品乱码av一区二区 | 中文字幕乱妇无码av在线 | 亚洲日韩乱码中文无码蜜桃臀网站 | 欧美人与动性行为视频 | 黑人大群体交免费视频 | 日本肉体xxxx裸交 | 国产精品视频免费播放 | 无码av最新清无码专区吞精 | 亚洲精品中文字幕久久久久 | 任你躁在线精品免费 | 国产97在线 | 亚洲 | 欧美喷潮久久久xxxxx | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 自拍偷自拍亚洲精品10p | 好男人社区资源 | 精品国产一区av天美传媒 | 老司机亚洲精品影院 | 日日鲁鲁鲁夜夜爽爽狠狠 | 色欲久久久天天天综合网精品 | 亚洲成av人在线观看网址 | 欧美精品无码一区二区三区 | 欧美 丝袜 自拍 制服 另类 | 在线精品亚洲一区二区 | 国产精品久久精品三级 | 最新国产乱人伦偷精品免费网站 | 亚洲成av人在线观看网址 | 97人妻精品一区二区三区 | 久久久久se色偷偷亚洲精品av | 国产免费久久精品国产传媒 | 欧美大屁股xxxxhd黑色 | 国产香蕉97碰碰久久人人 | 伦伦影院午夜理论片 | 久久久国产一区二区三区 | 国产三级精品三级男人的天堂 | 无码乱肉视频免费大全合集 | 在线精品国产一区二区三区 | 内射后入在线观看一区 | 日韩人妻无码一区二区三区久久99 | 中文字幕无线码 | 免费网站看v片在线18禁无码 | 日韩精品无码一区二区中文字幕 | 国产亚洲tv在线观看 | 国产乱人伦av在线无码 | 99精品国产综合久久久久五月天 | 六十路熟妇乱子伦 | 丁香啪啪综合成人亚洲 | 国产香蕉97碰碰久久人人 | 精品国产精品久久一区免费式 | 麻花豆传媒剧国产免费mv在线 | 亚洲精品综合五月久久小说 | 亚洲欧美日韩成人高清在线一区 | 亚洲熟悉妇女xxx妇女av | 久久久久久国产精品无码下载 | 3d动漫精品啪啪一区二区中 | 国产舌乚八伦偷品w中 | 精品久久久久久亚洲精品 | 国产极品美女高潮无套在线观看 | 国产精品高潮呻吟av久久 | 狠狠综合久久久久综合网 | 亚洲中文字幕久久无码 | 老头边吃奶边弄进去呻吟 | 日本护士xxxxhd少妇 | 内射欧美老妇wbb | 国产乱人无码伦av在线a | 夜夜夜高潮夜夜爽夜夜爰爰 | 欧美精品国产综合久久 | 亚洲中文字幕在线无码一区二区 | 中文毛片无遮挡高清免费 | 久久精品女人天堂av免费观看 | 欧美日韩视频无码一区二区三 |