一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術(shù)|正則表達(dá)式|C/C++|IOS|C#|Swift|Android|VB|R語(yǔ)言|JavaScript|易語(yǔ)言|vb.net|

服務(wù)器之家 - 編程語(yǔ)言 - Java教程 - 詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

2020-11-27 10:53kent鵬 Java教程

這篇文章主要介紹了詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

一、整合原理

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

二、導(dǎo)包(41個(gè))

1.hibernate

(1)hibernate/lib/required

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

(2)hibernate/lib/jpa | java persist api java的持久化規(guī)范(接口)

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

(3)數(shù)據(jù)庫(kù)驅(qū)動(dòng)

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

2.struts2

(1)struts-blank.war/web-inf/lib/*

 注意:javassist-3.18.1-ga.jar包與hibernate中的重復(fù)(只保留高版本即可)

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

(2)struts整合spring插件包

注意:這個(gè)包一旦導(dǎo)入,那么struts2在啟動(dòng)時(shí)就會(huì)尋找spring容器.找不到將會(huì)拋出異常

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

3.spring

(1)基本:4+2

core | beans | context | expression | logging | log4j

(2)整合web:web包

spring-web

(3)整合aop:4個(gè)

spring-aop | spring-aspect | aop聯(lián)盟 | aopweaving

(4)整合hibernate和事務(wù):4個(gè)

spring-jdbc | spring-tx | c3p0 | spring-orm

(5)整合junit4測(cè)試:test包

spring-test

4.標(biāo)簽庫(kù)

standard.jar | jstl-1.2.jar

三、單獨(dú)配置spring容器

1.創(chuàng)建applicationcontext.xml,并導(dǎo)入約束(4個(gè)) beans | context | aop | tx

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
              http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
              http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">
 
  <bean name="useraction" class="cn.xyp.web.action.useraction"></bean>
 
</beans>

2.配置spring隨項(xiàng)目啟動(dòng)(web.xml)

?
1
2
3
4
5
6
7
8
9
<!-- 讓spring隨web啟動(dòng)而創(chuàng)建的監(jiān)聽(tīng)器 -->
<listener>
  <listener-class>org.springframework.web.context.contextloaderlistener</listener-class>
</listener>
<!-- 配置spring配置文件位置參數(shù) -->
<context-param>
  <param-name>contextconfiglocation</param-name>
  <param-value>classpath:applicationcontext.xml</param-value>
</context-param>

四、單獨(dú)配置struts2

1.配置struts2主配置文件(struts.xml)

?
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
 <!doctype struts public
  "-//apache software foundation//dtd struts configuration 2.3//en"
  "http://struts.apache.org/dtds/struts-2.3.dtd">
  
<struts>
  <package name="crm" namespace="/" extends="struts-default">
    <action name="useraction_*" class="cn.xyp.web.action.useraction" method="{1}">
      <result name="success">/success.jsp</result>
    </action>
  </package>
</struts>

2.配置struts2核心過(guò)濾器到web.xml

?
1
2
3
4
5
6
7
8
9
10
<!-- struts2核心過(guò)濾器 -->
<filter>
  <filter-name>struts2</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter</filter-class>
</filter>
 
<filter-mapping>
  <filter-name>struts2</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

五、struts2與spring整合

1.導(dǎo)包(已經(jīng)導(dǎo)入)

struts2-spring-plugin-2.3.24.jar

2.配置常量

查看默認(rèn)配置文件從31行開(kāi)始找到要配置的變量。

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

?
1
2
3
4
5
6
7
8
### if specified, the default object factory can be overridden here
### note: short-hand notation is supported in some cases, such as "spring"
###    alternatively, you can provide a com.opensymphony.xwork2.objectfactory subclass name here
# struts.objectfactory = spring
 
### specifies the autowiring logic when using the springobjectfactory.
### valid values are: name, type, auto, and constructor (name is the default)
struts.objectfactory.spring.autowire = name

 添加常量到struts.xml

?
1
2
3
4
<!-- # struts.objectfactory = spring  將action的創(chuàng)建交給spring容器 
    struts.objectfactory.spring.autowire = name spring負(fù)責(zé)裝配action依賴屬性
    -->
<constant name="struts.objectfactory" value="spring"></constant>

3.整合方案1:struts2自己創(chuàng)建action,spring負(fù)責(zé)組裝依賴屬性(了解)

?
1
2
3
4
5
6
7
<!-- 整合方案1:class屬性上仍然配置action的完整類名
        struts2仍然創(chuàng)建action,由spring負(fù)責(zé)組裝action中的依賴屬性
     -->
    <action name="useraction_*" class="cn.xyp.web.action.useraction" method="{1}" >
      <result name="tohome" type="redirect" >/index.htm</result>
      <result name="error" >/login.jsp</result>
    </action>

不推薦理由:最好由spring完整管理action的生命周期.spring中功能才應(yīng)用到action上.

4.整合方案2:spring負(fù)責(zé)創(chuàng)建action以及組裝.(推薦)

applicationcontext.xml:

?
1
2
3
4
5
<!-- action -->
<!-- 注意:action對(duì)象作用范圍一定是多例的.這樣才符合struts2架構(gòu) -->
<bean name="useraction" class="cn.itcast.web.action.useraction" scope="prototype" >
  <property name="userservice" ref="userservice" ></property>
</bean>

struts.xml:

?
1
2
3
4
5
6
7
8
9
<!--
   整合方案2:class屬性上填寫spring中action對(duì)象的beanname
     完全由spring管理action生命周期,包括action的創(chuàng)建
     注意:需要手動(dòng)組裝依賴屬性
 -->
<action name="useraction_*" class="useraction" method="{1}" >
  <result name="tohome" type="redirect" >/index.htm</result>
  <result name="error" >/login.jsp</result>
</action>

六、單獨(dú)配置hibernate

1.導(dǎo)入實(shí)體類&orm元數(shù)據(jù)

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)  

舉例:user.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package cn.xyp.web.domain;
 
import java.util.hashset;
import java.util.set;
 
public class user {
  private long user_id;
  private string user_code;
  private string user_name;
  private string user_password;
  private character user_state;
  public long getuser_id() {
    return user_id;
  }
  public void setuser_id(long user_id) {
    this.user_id = user_id;
  }
  public string getuser_code() {
    return user_code;
  }
  public void setuser_code(string user_code) {
    this.user_code = user_code;
  }
  public string getuser_name() {
    return user_name;
  }
  public void setuser_name(string user_name) {
    this.user_name = user_name;
  }
  public string getuser_password() {
    return user_password;
  }
  public void setuser_password(string user_password) {
    this.user_password = user_password;
  }
  public character getuser_state() {
    return user_state;
  }
  public void setuser_state(character user_state) {
    this.user_state = user_state;
  }
  @override
  public string tostring() {
    return "user [user_id=" + user_id + ", user_code=" + user_code + ", user_name=" + user_name + ", user_password="
        + user_password + "]";
  }
}

user.hbm.xml:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<!doctype hibernate-mapping public
  "-//hibernate/hibernate mapping dtd 3.0//en"
  "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="cn.xyp.domain" >
  <class name="user" table="sys_user" >
    <id name="user_id" >
      <generator class="native"></generator>
    </id>
    <property name="user_code" ></property>
    <property name="user_name" ></property>
    <property name="user_password" ></property>
    <property name="user_state" ></property>
  
  </class>
</hibernate-mapping>

2.配置主配置文件(hibernate.xml)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<!doctype hibernate-configuration public
  "-//hibernate/hibernate configuration dtd 3.0//en"
  "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
  
     <!-- 數(shù)據(jù)庫(kù)驅(qū)動(dòng) -->
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.driver</property>
     <!-- 數(shù)據(jù)庫(kù)url -->
    <property name="hibernate.connection.url">jdbc:mysql:///crm_32</property>
     <!-- 數(shù)據(jù)庫(kù)連接用戶名 -->
    <property name="hibernate.connection.username">root</property>
     <!-- 數(shù)據(jù)庫(kù)連接密碼 -->
    <property name="hibernate.connection.password">1234</property>
    <!-- 數(shù)據(jù)庫(kù)方言
      注意: mysql在選擇方言時(shí),請(qǐng)選擇最短的方言.
     -->
    <property name="hibernate.dialect">org.hibernate.dialect.mysqldialect</property>
    
    
    <!-- 將hibernate生成的sql語(yǔ)句打印到控制臺(tái) -->
    <property name="hibernate.show_sql">true</property>
    <!-- 將hibernate生成的sql語(yǔ)句格式化(語(yǔ)法縮進(jìn)) -->
    <property name="hibernate.format_sql">true</property>
    <!--
    自動(dòng)導(dǎo)出表結(jié)構(gòu). 自動(dòng)建表
     -->
    <property name="hibernate.hbm2ddl.auto">update</property>
     
     <!-- 引入實(shí)體配置文件 -->
    <mapping resource="cn/xyp/domain/customer.hbm.xml" />
    <mapping resource="cn/xypt/domain/linkman.hbm.xml" />
    <mapping resource="cn/xyp/domain/user.hbm.xml" />
    
  </session-factory>
</hibernate-configuration>

七、spring整合hibernate

1.整合原理

將sessionfactory對(duì)象交給spring容器管理

2.在spring中配置sessionfactory

(1)配置方案一:(了解) 

?
1
2
3
4
<!-- 加載配置方案1:仍然使用外部的hibernate.cfg.xml配置信息 -->
  <bean name="sessionfactory" class="org.springframework.orm.hibernate5.localsessionfactorybean" >
    <property name="configlocation" value="classpath:hibernate.cfg.xml" ></property>
  </bean>

(2)配置方案二:(推薦)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- 加載配置方案2:在spring配置中放置hibernate配置信息 -->
<bean name="sessionfactory" class="org.springframework.orm.hibernate5.localsessionfactorybean" >
  <!-- 將連接池注入到sessionfactory, hibernate會(huì)通過(guò)連接池獲得連接 -->
  <property name="datasource" ref="datasource" ></property>
  <!-- 配置hibernate基本信息 -->
  <property name="hibernateproperties">
    <props>
      <!-- 必選配置 -->
      <prop key="hibernate.connection.driver_class" >com.mysql.jdbc.driver</prop>
      <prop key="hibernate.connection.url" >jdbc:mysql:///crm_32</prop>
      <prop key="hibernate.connection.username" >root</prop>
      <prop key="hibernate.connection.password" >1234</prop>
      <prop key="hibernate.dialect" >org.hibernate.dialect.mysqldialect</prop>
      
      <!-- 可選配置 -->
      <prop key="hibernate.show_sql" >true</prop>
      <prop key="hibernate.format_sql" >true</prop>
      <prop key="hibernate.hbm2ddl.auto" >update</prop>
    </props>
  </property>
  <!-- 引入orm元數(shù)據(jù),指定orm元數(shù)據(jù)所在的包路徑,spring會(huì)自動(dòng)讀取包中的所有配置 -->
  <property name="mappingdirectorylocations" value="classpath:cn/itcast/domain" ></property>
</bean>

八、spring整合c3p0連接池

1.配置db.properties

?
1
2
3
4
jdbc.jdbcurl=jdbc:mysql:///xyp_crm
jdbc.driverclass=com.mysql.jdbc.driver
jdbc.user=root
jdbc.password=123456

2.引入連接池到spring中

?
1
2
3
4
5
6
7
8
9
<!-- 讀取db.properties文件 -->
<context:property-placeholder location="classpath:db.properties" />
<!-- 配置c3p0連接池 -->
<bean name="datasource" class="com.mchange.v2.c3p0.combopooleddatasource" >
  <property name="jdbcurl" value="${jdbc.jdbcurl}" ></property>
  <property name="driverclass" value="${jdbc.driverclass}" ></property>
  <property name="user" value="${jdbc.user}" ></property>
  <property name="password" value="${jdbc.password}" ></property>
</bean>

3.將連接池注入給sessionfactory

?
1
2
3
<bean name="sessionfactory" class="org.springframework.orm.hibernate5.localsessionfactorybean" >
  <!-- 將連接池注入到sessionfactory, hibernate會(huì)通過(guò)連接池獲得連接 -->
  <property name="datasource" ref="datasource" ></property>

九、spring整合hibernate環(huán)境操作數(shù)據(jù)庫(kù)

1.dao類創(chuàng)建:繼承hibernatedaosupport

注意:項(xiàng)目中要確保使用統(tǒng)一版本。

詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

?
1
2
//hibernatedaosupport 為dao注入sessionfactory
public class userdaoimpl extends hibernatedaosupport implements userdao {

2.hibernate模板的操作

(1)execute
 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
@override
public user getbyusercode(final string usercode) {
  //hql
  return gethibernatetemplate().execute(new hibernatecallback<user>() {
    @override
    public user doinhibernate(session session) throws hibernateexception {
        string hql = "from user where user_code = ? ";
        query query = session.createquery(hql);
        query.setparameter(0, usercode);
        user user = (user) query.uniqueresult();
      return user;
    }
  });

(2)findbycriteria

?
1
2
3
4
5
6
7
8
9
10
11
12
//criteria
detachedcriteria dc = detachedcriteria.forclass(user.class);
 
dc.add(restrictions.eq("user_code", usercode));
 
list<user> list = (list<user>) gethibernatetemplate().findbycriteria(dc);
  
if(list != null && list.size()>0){
  return list.get(0);
}else{
  return null;
}

3.spring中配置dao

?
1
2
3
4
5
<!-- dao -->
<bean name="userdao" class="cn.xyp.dao.impl.userdaoimpl" >
  <!-- 注入sessionfactory -->
  <property name="sessionfactory" ref="sessionfactory"></property>
</bean>

十、spring的aop事務(wù)

1.準(zhǔn)備工作

?
1
2
3
4
<!-- 核心事務(wù)管理器 -->
<bean name="transactionmanager" class="org.springframework.orm.hibernate5.hibernatetransactionmanager" >
  <property name="sessionfactory" ref="sessionfactory" ></property>
</bean>

2.xml配置aop事務(wù)

(1)配置通知

?
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- 配置通知 -->
<tx:advice id="txadvice" transaction-manager="transactionmanager" >
  <tx:attributes>
    <tx:method name="save*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="persist*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="update*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="modify*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="delete*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="remove*" isolation="repeatable_read" propagation="required" read-only="false" />
    <tx:method name="get*" isolation="repeatable_read" propagation="required" read-only="true" />
    <tx:method name="find*" isolation="repeatable_read" propagation="required" read-only="true" />
  </tx:attributes>
</tx:advice>

(2)配置織入

?
1
2
3
4
5
6
7
<!-- 配置將通知織入目標(biāo)對(duì)象
配置切點(diǎn)
配置切面 -->
<aop:config>
  <aop:pointcut expression="execution(* cn.itcast.service.impl.*serviceimpl.*(..))" id="txpc"/>
  <aop:advisor advice-ref="txadvice" pointcut-ref="txpc" />
</aop:config>

3.注解配置aop事務(wù)

(1)開(kāi)啟注解事務(wù)

?
1
2
<!-- 開(kāi)啟注解事務(wù) -->
<tx:annotation-driven transaction-manager="transactionmanager" />

(2)service類中使用注解

?
1
2
@transactional(isolation=isolation.repeatable_read,propagation=propagation.required,readonly=true)
public class userserviceimpl implements userservice{
?
1
2
3
4
5
@override
@transactional(isolation=isolation.repeatable_read,propagation=propagation.required,readonly=false)
public void saveuser(user u) {
  ud.save(u);
}

十一、擴(kuò)大session作用范圍

1.配置filter

為了避免使用懶加載時(shí)出現(xiàn)no-session問(wèn)題.需要擴(kuò)大session的作用范圍。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- 擴(kuò)大session作用范圍
  注意: 任何filter一定要在struts的filter之前調(diào)用
  因?yàn)閟truts是不會(huì)放行的
 -->
 <filter>
  <filter-name>opensessioninview</filter-name>
  <filter-class>org.springframework.orm.hibernate5.support.opensessioninviewfilter</filter-class>
</filter>
 
<filter-mapping>
  <filter-name>opensessioninview</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

十二、練習(xí):用戶登錄

1.struts.xml核心配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<struts>
  <!-- # struts.objectfactory = spring  將action的創(chuàng)建交給spring容器 
      struts.objectfactory.spring.autowire = name spring負(fù)責(zé)裝配action依賴屬性
      -->
  <constant name="struts.objectfactory" value="spring"></constant>
 
  <package name="crm" namespace="/" extends="struts-default" >
    <global-exception-mappings>
      <exception-mapping result="error" exception="java.lang.runtimeexception"></exception-mapping>
    </global-exception-mappings>
 
     <!--
       整合方案:class屬性上填寫spring中action對(duì)象的beanname
         完全由spring管理action生命周期,包括action的創(chuàng)建
         注意:需要手動(dòng)組裝依賴屬性
     -->
    <action name="useraction_*" class="useraction" method="{1}" >
      <result name="tohome" type="redirect" >/index.htm</result>
      <result name="error" >/login.jsp</result>
    </action>
  </package>
</struts>

2.action代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class useraction extends actionsupport implements modeldriven<user> {
  private user user = new user();
  
  private userservice userservice ;
  
  public void setuserservice(userservice userservice) {
    this.userservice = userservice;
  }
 
  public string login() throws exception {
      //1 調(diào)用service執(zhí)行登陸邏輯
      user u = userservice.getuserbycodepassword(user);
      //2 將返回的user對(duì)象放入session域
      actioncontext.getcontext().getsession().put("user", u);
      //3 重定向到項(xiàng)目首頁(yè)
    return "tohome";
  }
 
  @override
  public user getmodel() {
    return user;
  }
 
}

2.service核心代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public user getuserbycodepassword(user u) {
  // 1 根據(jù)登陸名稱查詢登陸用戶
  user existu = ud.getbyusercode(u.getuser_code());
  // 2 判斷用戶是否存在.不存在=>拋出異常,提示用戶名不存在
  if (existu == null) {
    throw new runtimeexception("用戶名不存在!");
  }
  // 3 判斷用戶密碼是否正確=>不正確=>拋出異常,提示密碼錯(cuò)誤
  if (!existu.getuser_password().equals(u.getuser_password())) {
    throw new runtimeexception("密碼錯(cuò)誤!");
  }
  // 4 返回查詢到的用戶對(duì)象
  return existu;
}

3.dao核心代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public user getbyusercode(final string usercode) {
 
  //criteria
  detachedcriteria dc = detachedcriteria.forclass(user.class);
  dc.add(restrictions.eq("user_code", usercode));
  
  list<user> list = (list<user>) gethibernatetemplate().findbycriteria(dc);
  
  if(list != null && list.size()>0){
    return list.get(0);
  }else{
    return null;
  }
  
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:http://www.cnblogs.com/xieyupeng/p/7108141.html?utm_source=tuicool&utm_medium=referral

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 日本人做受全过程视频 | 精品手机在线1卡二卡3卡四卡 | 久久久久久久久女黄 | 九九国产在线视频 | 3d蒂法精品啪啪一区二区免费 | 亚洲狠狠婷婷综合久久蜜桃 | 色噜噜视频影院 | 亚洲欧美一区二区三区不卡 | 小SAO货边洗澡边CAO你动漫 | 男人j放进女人的p视频免费 | ova巨公主催眠1在线观看 | 日本阿v精品视频在线观看 日本xxx片免费高清在线 | 国产精品原创巨作无遮挡 | 办公室恋情在线观看 | 99久9在线视频 | 女性全身裸露无遮挡 | 欧美操大逼视频 | 国产成人www免费人成看片 | 热99精品只有里视频最新 | 亚洲激情偷拍 | 四虎影视紧急入口地址大全 | 性夜影院午夜看片 | 亚洲国产精品综合福利专区 | 色综合精品 | 亚洲成人国产 | 日本最大的黄色网站 | 欧美高清milf在线播放 | 亚洲国产成人精品无码区5566 | 国产成人欧美 | 色爱导航 | 欧洲一级黑寡妇 | xx18美女美国 | 猥琐对着美女飞机喷到脸上 | 青青草成人影院 | 操操小说 | 国产精品一久久香蕉产线看 | 91动漫在线观看 | 精品一区二区三区波多野结衣 | 91热爆在线 | 垫底辣妹免费观看完整版 | 午夜精品久久久内射近拍高清 |