日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人文社科 > 生活经验 >内容正文

生活经验

Java - 框架之 SpringBoot 攻略day01

發布時間:2023/11/27 生活经验 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java - 框架之 SpringBoot 攻略day01 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Spring-Boot 攻略 day01

spring-boot


一. 基本配置加運行

1. 導入配置文件(pom.xml 文件中)

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>1.5.9.RELEASE</version>
  5. </parent>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. </dependency>
  11. </dependencies>

2. Application.java

  1. @SpringBootApplication
  2. publicclassHelloApplication{
  3. publicstaticvoid main(String[] args){
  4. SpringApplication.run(HelloApplication.class, args);
  5. }
  6. }

3. Controller.java

  1. /*
  2. @RestController 可以代替 @ResponseBody 和 @Controller
  3. */
  4. @ResponseBody
  5. @Controller
  6. publicclass h1Controller {
  7. @RequestMapping("/hello")
  8. publicString t1(){
  9. return"Hello!";
  10. }
  11. }

4. 直接運行 Application 中的代碼,頁面訪問 http://localhost:8080/hello 就會看到 Hello!。

5. 打包 jar 包,在 pom.xml 配置文件中添加:

  1. <!-- 這個插件,可以將應用打包成一個可執行的jar包;-->
  2. <build>
  3. <plugins>
  4. <plugin>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-maven-plugin</artifactId>
  7. </plugin>
  8. </plugins>
  9. </build>

6.運行:

java -jar jar包名

二. SpringBoot( pom.xml )文件講解

1. 依賴包:

都存放在 pom.xml 文件 -> spring-boot-starter-parent -> spring-boot-dependedcies 中

2. 啟動器

spring-boot-starter: Spring-Boot 場景啟動器。
比如上面的 **spring-boot-starter-web**就幫我們導入了有關web項目的啟動器, 所以需要什么場景的starter(啟動器),只需要導入相關依賴即可。
  1. <artifactId>spring-boot-starter-web</artifactId>

三. 主程序(主入口)類

1. 注解

@SpringBootApplication :標注在某個類上說明這個類是 SpringBoot 的主配置類,SpringBoot 可以運行這個類的 main 方法來啟動服務。

  1. @SpringBootApplication
  2. publicclassHelloApplication{
  3. publicstaticvoid main(String[] args){
  4. SpringApplication.run(HelloApplication.class, args);
  5. }
  6. }

@SpringBootConfiguration :Spring Boot的配置類;

@Configuration :配置類標注這個注解(配置文件;配置類也是容器中的一個組件;@Component)

@EnableAutoConfiguration :開啟自動配置功能;

@AutoConfigurationPackage :自動配置包;

@Import(EnableAutoConfigurationImportSelector.class) : 給容器中導入組件;

四. 使用 Spring Initializer 快速創建 Spring Boot 項目

1. 創建 Spring Initializer 項目,并選擇需要使用的模塊。

2. resources 文件夾中目錄結構

  • static : 靜態資源
  • templates :模板頁面
  • application.properties : SpringBoot 應用的配置文件

五. 配置文件(兩者都可配置,寫法不同)

1. application.properties

  • 寫法:
  1. server.port=8081

2. application.yml (默認沒有,需手動創建到 resources 文件下)

  • 寫法
  1. server:
  2. port:8081

3. YMAL 基本語法

  • 以空格縮進
  1. server:
  2. port:8081
  • 值的寫法

    • 字面量:k: v 的方式來寫(注意有個空格在:的后面)

      ?

      "" :雙引號不會轉義特殊字符
      '' : 單引號會轉移特殊字符(轉義為字符串)

    ?

  • 對象,Map 寫法

    1. k: v 與上面寫法一致

      1. server:
      2. port:8081
    2. 行內表示:

      1. server:{port:8081}
  • 數組 (List, Set)

  1. Person:
  2. - p1
  3. - p2
  4. - p3

4. 配置文件的注入

注意:這個配置順序要寫在單元測試配置之前

  1. <!--導入配置文件處理器,配置文件進行綁定就會有提示-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-configuration-processo</artifactId>
  5. <optional>true</optional>
  6. </dependency>

一. yaml 配置

  • application.yml
  1. lastname:張三
  2. age:11
  3. isBoy:true
  4. Date:2019/4/19
  5. maps:{k1: v1, k2:59}
  6. lists:
  7. - li1
  8. - li2
  9. dog:
  10. name:黑狗
  11. age:1
  • Person.java
  1. /*
  2. * 將配置文件中配置的每一個屬性值,映射到這個組件中
  3. * @ConfigurationProperties:告訴 SpringBoot 將當前類中的所有屬性與 配置文件中的配置進行幫定
  4. * prefix = "person" : 配置文件中哪個下面的所有屬性進行映射
  5. *
  6. * 只有這個組件是容器中的組件,才能提供 @ConfigurationProperties 中的功能,也就是需要加上:@Component
  7. * */
  8. @Component
  9. @ConfigurationProperties(prefix ="person")
  10. publicclassPerson{
  11. privateString lastName;
  12. privateInteger age;
  13. privateBoolean isBoy;
  14. privateDate birthday;
  15. privateMap<Object,Object> maps;
  16. privateList<Object> lists;
  17. privateDog dog;
  18. }
  • Dog.java
  1. publicclassDog{
  2. privateString name;
  3. privateInteger age;
  4. }
  • Test 單元測試
  1. @Autowired
  2. Person person;
  3. @Test
  4. publicvoid contextLoads(){
  5. System.out.println(person);
  6. }

二. properties 配置 ( application.properties )

注意:使用這個配置會有編碼問題,解決如下( idea ):

settings -> File Encodings 配置下:

Default encoding for properties files: 設置為 UTF-8
勾選:Transparent native-to-ascii conversion 這個選項

  • application.properties 文件
  1. # 配置 Person 的值
  2. person.last-name=張三
  3. person.age=11
  4. person.birthday=2019/4/19
  5. person.isBoy=true
  6. person.maps.k1=v1
  7. person.maps.k2=59
  8. person.lists=p1,p2,p3
  9. person.dog.name=大黑狗
  10. person.dog.age=2
  • 剩余配置如上

三. @ConfigurationProperties 與 @Value

比較@ConfigurationProperties@Value
功能批量注入配置文件中的屬性一個個指定
松散綁定(松散語法)支持不支持
SpEL不支持支持
JSR303數據校驗支持不支持
復雜類型封裝支持不支持
  • 松散綁定 :如果遇到 last-name 可以寫成 lastName,也就是帶有 - 或 _ 的后一個字母可用大寫
  • SpEL : 語法解析,如 ${1*19} , @Value 就可以解析
  • JSR303數據校驗 : 內置的 @Eamil 等可以進行數據的校驗,詳細請看下文
  • 復雜類型封裝 :如 Map 等復雜類型 @Value 是無法解析的(List可以解析),會報錯
  1. @Component
  2. //@ConfigurationProperties(prefix = "person")
  3. @Validated
  4. publicclassPerson{
  5. // @Value("${person.last-name}")
  6. @Email// 這里 lastName 必須是郵箱格式
  7. privateString lastName;
  8. @Value("#{1*10}")// 可進行邏輯操作
  9. privateInteger age;
  10. privateBoolean isBoy;
  11. privateDate birthday;
  12. privateMap<Object,Object> maps;
  13. privateList<Object> lists;
  14. privateDog dog;
  15. }

四. @PropertySource & @ImportResource & @Bean

@PropertySource:加載指定的配置文件;

  1. /**
  2. *
  3. * @PropertySource : 可以指定到去哪個文件加載配置
  4. */
  5. @PropertySource(value ={"classpath:person.properties"})
  6. @Component
  7. @ConfigurationProperties(prefix ="person")
  8. //@Validated
  9. publicclassPerson{
  10. /**
  11. * <bean class="Person">
  12. * <property name="lastName" value="字面量/${key}從環境變量、配置文件中獲取值/#{SpEL}"></property>
  13. * <bean/>
  14. */
  15. //lastName必須是郵箱格式
  16. // @Email
  17. //@Value("${person.last-name}")
  18. privateString lastName;
  19. //@Value("#{11*2}")
  20. privateInteger age;
  21. //@Value("true")
  22. privateBoolean boss;
  23. }

@ImportResource:導入Spring的配置文件,讓配置文件里面的內容生效;

Spring Boot里面沒有Spring的配置文件,我們自己編寫的配置文件,也不能自動識別;

想讓Spring的配置文件生效,加載進來;@ImportResource標注在一個配置類上

  1. @ImportResource(locations ={"classpath:beans.xml"})
  2. 導入Spring的配置文件讓其生效

使用XML文件加載配置(beans.xml)

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <beanid="helloService"class="com.atguigu.springboot.service.HelloService"></bean>
  6. </beans>

SpringBoot推薦給容器中添加組件的方式:使用全注解

1、配置類@Configuration------>Spring配置文件

2、使用@Bean給容器中添加組件

  • Service.java
  1. // @Configuration :指明當前類為配置類,用來替代 Spring 配置文件
  2. @Configuration
  3. publicclassMyAppConfig{
  4. // @Bean :將方法的返回值添加到容器中,容器中這個組件的默認id就是方法名
  5. @Bean
  6. publicHelloService helloService(){
  7. returnnewHelloService();
  8. }
  9. }
  • 單元測試類
  1. @Autowired
  2. ApplicationContext ioc;
  3. @Test
  4. publicvoid testHelloService(){
  5. System.out.println("執行配置文件...");
  6. boolean b = ioc.containsBean("helloService");
  7. System.out.println(b);
  8. }

五. 配置文件占位符

1、隨機數

  1. ${random.value}、${random.int}、${random.long}
  2. ${random.int(10)}、${random.int[1024,65536]}

2、占位符獲取之前配置的值,如果沒有可以是用:指定默認值

  1. person.last-name=張三${random.uuid}
  2. person.age=${random.int}
  3. person.birth=2017/12/15
  4. person.boss=false
  5. person.maps.k1=v1
  6. person.maps.k2=14
  7. person.lists=a,b,c
  8. person.dog.name=${person.hello:hello}_dog
  9. person.dog.age=15

六. Profile

1、多Profile文件

我們在主配置文件編寫的時候,文件名可以是 application-{profile}.properties/yml

默認使用application.properties的配置;

2、yml支持多文檔塊方式

  1. server:
  2. port:8081
  3. spring:
  4. profiles:
  5. active: prod
  6. ---
  7. server:
  8. port:8083
  9. spring:
  10. profiles: dev
  11. ---
  12. server:
  13. port:8084
  14. spring:
  15. profiles: prod #指定屬于哪個環境

3、激活指定profile

? 1、在配置文件中指定 spring.profiles.active=dev

? 2、命令行:

? java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;

? 可以直接在測試的時候,配置傳入命令行參數

? 3、虛擬機參數;

? -Dspring.profiles.active=dev

七、配置文件加載位置

springboot 啟動會掃描以下位置的application.properties或者application.yml文件作為Spring boot的默認配置文件

–file:./config/

–file:./

–classpath:/config/

–classpath:/

優先級由高到底,高優先級的配置會覆蓋低優先級的配置;

SpringBoot會從這四個位置全部加載主配置文件;互補配置

==我們還可以通過spring.config.location來改變默認的配置文件位置==

項目打包好以后,我們可以使用命令行參數的形式,啟動項目的時候來指定配置文件的新位置;指定配置文件和默認加載的這些配置文件共同起作用形成互補配置;

java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar --spring.config.location=G:/application.properties

八、外部配置加載順序

==SpringBoot也可以從以下位置加載配置; 優先級從高到低;高優先級的配置覆蓋低優先級的配置,所有的配置會形成互補配置==

1.命令行參數

所有的配置都可以在命令行上進行指定

java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar --server.port=8087 --server.context-path=/abc

多個配置用空格分開; --配置項=值

2.來自java:comp/env的JNDI屬性

3.Java系統屬性(System.getProperties())

4.操作系統環境變量

5.RandomValuePropertySource配置的random.*屬性值

==由jar包外向jar包內進行尋找;==

==優先加載帶profile==

6.jar包外部的application-{profile}.properties或application.yml(帶spring.profile)配置文件

7.jar包內部的application-{profile}.properties或application.yml(帶spring.profile)配置文件

==再來加載不帶profile==

8.jar包外部的application.properties或application.yml(不帶spring.profile)配置文件

9.jar包內部的application.properties或application.yml(不帶spring.profile)配置文件

10.@Configuration注解類上的@PropertySource

11.通過SpringApplication.setDefaultProperties指定的默認屬性

所有支持的配置加載來源;

參考官方文檔

8、自動配置原理

配置文件到底能寫什么?怎么寫?自動配置原理;

配置文件能配置的屬性參照

1、自動配置原理:

1)、SpringBoot啟動的時候加載主配置類,開啟了自動配置功能 ==@EnableAutoConfiguration==

2)、@EnableAutoConfiguration 作用:

  • 利用EnableAutoConfigurationImportSelector給容器中導入一些組件?

    • 可以查看selectImports()方法的內容;

    • List configurations = getCandidateConfigurations(annotationMetadata, attributes);獲取候選的配置

    1. SpringFactoriesLoader.loadFactoryNames()
    2. 掃描所有jar包類路徑下 META-INF/spring.factories
    3. 把掃描到的這些文件的內容包裝成properties對象
    4. properties中獲取到EnableAutoConfiguration.class類(類名)對應的值,然后把他們添加在容器中

    ?

==將 類路徑下 META-INF/spring.factories 里面配置的所有EnableAutoConfiguration的值加入到了容器中;==

  1. # Auto Configure
  2. org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
  3. org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,\
  4. org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,\
  5. org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration,\
  6. org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration,\
  7. org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration,\
  8. org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration,\
  9. org.springframework.boot.autoconfigure.cloud.CloudAutoConfiguration,\
  10. org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,\
  11. org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration,\
  12. org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,\
  13. org.springframework.boot.autoconfigure.couchbase.CouchbaseAutoConfiguration,\
  14. org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration,
  15. ...

每一個這樣的 xxxAutoConfiguration類都是容器中的一個組件,都加入到容器中;用他們來做自動配置;

3)、每一個自動配置類進行自動配置功能;

4)、以HttpEncodingAutoConfiguration(Http編碼自動配置)為例解釋自動配置原理;

  1. @Configuration//表示這是一個配置類,以前編寫的配置文件一樣,也可以給容器中添加組件
  2. @EnableConfigurationProperties(HttpEncodingProperties.class)//啟動指定類的ConfigurationProperties功能;將配置文件中對應的值和HttpEncodingProperties綁定起來;并把HttpEncodingProperties加入到ioc容器中
  3. @ConditionalOnWebApplication//Spring底層@Conditional注解(Spring注解版),根據不同的條件,如果滿足指定的條件,整個配置類里面的配置就會生效; 判斷當前應用是否是web應用,如果是,當前配置類生效
  4. @ConditionalOnClass(CharacterEncodingFilter.class)//判斷當前項目有沒有這個類CharacterEncodingFilter;SpringMVC中進行亂碼解決的過濾器;
  5. @ConditionalOnProperty(prefix ="spring.http.encoding", value ="enabled", matchIfMissing =true)//判斷配置文件中是否存在某個配置 spring.http.encoding.enabled;如果不存在,判斷也是成立的
  6. //即使我們配置文件中不配置pring.http.encoding.enabled=true,也是默認生效的;
  7. publicclassHttpEncodingAutoConfiguration{
  8. //他已經和SpringBoot的配置文件映射了
  9. privatefinalHttpEncodingProperties properties;
  10. //只有一個有參構造器的情況下,參數的值就會從容器中拿
  11. publicHttpEncodingAutoConfiguration(HttpEncodingProperties properties){
  12. this.properties = properties;
  13. }
  14. @Bean//給容器中添加一個組件,這個組件的某些值需要從properties中獲取
  15. @ConditionalOnMissingBean(CharacterEncodingFilter.class)//判斷容器沒有這個組件?沒有才加載
  16. publicCharacterEncodingFilter characterEncodingFilter(){
  17. CharacterEncodingFilter filter =newOrderedCharacterEncodingFilter();
  18. filter.setEncoding(this.properties.getCharset().name());
  19. filter.setForceRequestEncoding(this.properties.shouldForce(Type.REQUEST));
  20. filter.setForceResponseEncoding(this.properties.shouldForce(Type.RESPONSE));
  21. return filter;
  22. }

根據當前不同的條件判斷,決定這個配置類是否生效?

一但這個配置類生效;這個配置類就會給容器中添加各種組件;這些組件的屬性是從對應的properties類中獲取的,這些類里面的每一個屬性又是和配置文件綁定的;

5)、所有在配置文件中能配置的屬性都是在xxxxProperties類中封裝者‘;配置文件能配置什么就可以參照某個功能對應的這個屬性類

  1. @ConfigurationProperties(prefix ="spring.http.encoding")//從配置文件中獲取指定的值和bean的屬性進行綁定
  2. publicclassHttpEncodingProperties{
  3. publicstaticfinalCharset DEFAULT_CHARSET =Charset.forName("UTF-8");

精髓:

? 1)、SpringBoot啟動會加載大量的自動配置類

? 2)、我們看我們需要的功能有沒有SpringBoot默認寫好的自動配置類;

? 3)、我們再來看這個自動配置類中到底配置了哪些組件;(只要我們要用的組件有,我們就不需要再來配置了)

? 4)、給容器中自動配置類添加組件的時候,會從properties類中獲取某些屬性。我們就可以在配置文件中指定這些屬性的值;

xxxxAutoConfigurartion:自動配置類;

給容器中添加組件

xxxxProperties:封裝配置文件中相關屬性;

2、細節

1、@Conditional派生注解(Spring注解版原生的@Conditional作用)

作用:必須是@Conditional指定的條件成立,才給容器中添加組件,配置配里面的所有內容才生效;

@Conditional擴展注解作用(判斷是否滿足當前指定條件)
@ConditionalOnJava系統的java版本是否符合要求
@ConditionalOnBean容器中存在指定Bean;
@ConditionalOnMissingBean容器中不存在指定Bean;
@ConditionalOnExpression滿足SpEL表達式指定
@ConditionalOnClass系統中有指定的類
@ConditionalOnMissingClass系統中沒有指定的類
@ConditionalOnSingleCandidate容器中只有一個指定的Bean,或者這個Bean是首選Bean
@ConditionalOnProperty系統中指定的屬性是否有指定的值
@ConditionalOnResource類路徑下是否存在指定資源文件
@ConditionalOnWebApplication當前是web環境
@ConditionalOnNotWebApplication當前不是web環境
@ConditionalOnJndiJNDI存在指定項

自動配置類必須在一定的條件下才能生效;

我們怎么知道哪些自動配置類生效;

==我們可以通過啟用 debug=true屬性;來讓控制臺打印自動配置報告==,這樣我們就可以很方便的知道哪些自動配置類生效;

  1. =========================
  2. AUTO-CONFIGURATION REPORT
  3. =========================
  4. Positive matches:(自動配置類啟用的)
  5. -----------------
  6. DispatcherServletAutoConfiguration matched:
  7. -@ConditionalOnClass found required class'org.springframework.web.servlet.DispatcherServlet';@ConditionalOnMissingClass did not find unwanted class(OnClassCondition)
  8. -@ConditionalOnWebApplication(required) found StandardServletEnvironment(OnWebApplicationCondition)
  9. Negative matches:(沒有啟動,沒有匹配成功的自動配置類)
  10. -----------------
  11. ActiveMQAutoConfiguration:
  12. Did not match:
  13. -@ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory','org.apache.activemq.ActiveMQConnectionFactory'(OnClassCondition)
  14. AopAutoConfiguration:
  15. Did not match:
  16. -@ConditionalOnClass did not find required classes 'org.aspectj.lang.annotation.Aspect','org.aspectj.lang.reflect.Advice'(OnClassCondition)

轉載于:https://www.cnblogs.com/chaoqi/p/10739739.html

總結

以上是生活随笔為你收集整理的Java - 框架之 SpringBoot 攻略day01的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

主站蜘蛛池模板: 97精品国产97久久久久久免费 | av官网在线观看 | www.色网站 | 成人免费区一区二区三区 | 一区二区三区在线电影 | 精品久久久久一区 | 天天做天天射 | 中文字幕乱轮 | av在线播放不卡 | 国产精品国产三级国产专播品爱网 | 欧美午夜在线观看 | 中文字幕亚洲日本 | 精品一区二区久久久久久按摩 | 一区二区三区四区视频在线观看 | 好看的中文字幕av | 一区二区在线观看免费 | 欧美成人一区二免费视频软件 | 日韩欧美国产精品 | 免费av手机在线观看 | 饥渴放荡受np公车奶牛 | 国产字幕av | 在线看a网站| 欧洲丰满少妇做爰 | 毛片在线视频播放 | 国产成人a v | 少妇av导航| 久久五月天综合 | 精品国产91久久久久久 | 亚洲色图综合在线 | 中国大陆高清aⅴ毛片 | 嫩草影院菊竹影院 | 日韩免费一级 | 爱久久视频 | 精品国产91 | 黄色香蕉网 | 日韩精品一区二区三区中文在线 | 国产精品粉嫩 | 国产综合av | 亚洲精品66 | 亚洲人成电影网站 | 伊人精品在线视频 | 人妻洗澡被强公日日澡电影 | 亚洲男人的天堂网站 | 高清视频在线播放 | 国产又粗又大又黄 | 春色激情 | 国产原创在线视频 | 香蕉视频在线免费播放 | 国产在线精品播放 | 无码国内精品人妻少妇蜜桃视频 | 爱情岛论坛自拍亚洲品质极速最新章 | 久久久久久久亚洲精品 | 欧美少妇视频 | 国产亚洲福利 | 色婷久久| 口述3p做爰全过程 | 私库av在线 | 噜噜狠狠狠狠综合久久 | 中文在线观看高清视频 | 91精品国产综合久久久蜜臀粉嫩 | 亚洲精品一区在线观看 | 国产免费一区二区三区三州老师 | 免费在线国产精品 | 91国产精品一区 | 水蜜桃av在线| 国模私拍av| 国产精品久久久久久亚洲调教 | 亚洲欧美综合色 | 神马久久久久久久久 | 成人国产| sese在线视频| 久久欧美精品 | 久久精品久久久久久久 | 欧美一二三 | 亚洲xxxxxx| 国产大片一区二区 | 久久com | 一级国产片 | 97久久国产| 人人爽av | 粉嫩av一区二区白浆 | 国产成人精品三级麻豆 | 精品乱码久久久久久中文字幕 | 九九在线观看视频 | 中文字幕在线视频一区二区 | 精品久久久久久久久久久久久久久久 | 开心激情网五月天 | 精品国产亚洲av麻豆 | 日本免费精品视频 | 三级福利片 | 久久精品视频8 | 变态另类一区 | 国产精品人妻一区二区三区 | 国产伦精品一区二区三区高清 | 欧美亚洲三级 | 禁漫天堂黄漫画无遮挡观看 | 亚洲欧美日韩在线 | 污污的视频在线观看 | 伊人久在线 |