国产精品电影_久久视频免费_欧美日韩国产激情_成年人视频免费在线播放_日本久久亚洲电影_久久都是精品_66av99_九色精品美女在线_蜜臀a∨国产成人精品_冲田杏梨av在线_欧美精品在线一区二区三区_麻豆mv在线看

SpringBoot的兩種啟動方式原理,你學會了嗎?

開發 前端
關于Tomcat的屬性都在?org.springframework.boot.autoconfigure.web.ServerProperties?配置類中做了定義,我們只需在application.properties配置屬性做配置即可。通用的Servlet容器配置都以?server?作為前綴。

使用內置tomcat啟動

配置案例

啟動方式

  1. IDEA中main函數啟動
  2. mvn springboot-run
  3. java -jar XXX.jar 使用這種方式時,為保證服務在后臺運行,會使用nohup
nohup java -jar -Xms128m -Xmx128m -Xss256k -XX:+PrintGCDetails -XX:+PrintHeapAtGC -Xloggc:/data/log/web-gc.log web.jar >/data/log/web.log &

使用java -jar默認情況下,不會啟動任何嵌入式Application Server,該命令只是啟動一個執行jar main的JVM進程,當spring-boot-starter-web包含嵌入式tomcat服務器依賴項時,執行java -jar則會啟動Application Server

配置內置tomcat屬性

關于Tomcat的屬性都在 org.springframework.boot.autoconfigure.web.ServerProperties 配置類中做了定義,我們只需在application.properties配置屬性做配置即可。通用的Servlet容器配置都以 server 作為前綴

#配置程序端口,默認為8080
server.port= 8080
#用戶會話session過期時間,以秒為單位
server.session.timeout=
#配置默認訪問路徑,默認為/
server.context-path=

而Tomcat特有配置都以 server.tomcat 作為前綴

# 配置Tomcat編碼,默認為UTF-8
server.tomcat.uri-encoding=UTF-8
# 配置最大線程數
server.tomcat.max-threads=1000

注意:使用內置tomcat不需要有tomcat-embed-jasper和spring-boot-starter-tomcat依賴,因為在spring-boot-starter-web依賴中已經集成了tomcat

原理

從main函數說起

public static ConfigurableApplicationContext run(Class<?> primarySource, String... args) {
    return run(new Class[]{primarySource}, args);
}
 
// 這里run方法返回的是ConfigurableApplicationContext
public static ConfigurableApplicationContext run(Class<?>[] primarySources, String[] args) {
  return (new SpringApplication(primarySources)).run(args);
}
public ConfigurableApplicationContext run(String... args) {
 ConfigurableApplicationContext context = null;
 Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList();
this.configureHeadlessProperty();
 SpringApplicationRunListeners listeners = this.getRunListeners(args);
 listeners.starting();

 Collection exceptionReporters;
try {
  ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);
  ConfigurableEnvironment environment = this.prepareEnvironment(listeners, applicationArguments);
this.configureIgnoreBeanInfo(environment);

//打印banner,這里可以自己涂鴉一下,換成自己項目的logo
  Banner printedBanner = this.printBanner(environment);

//創建應用上下文
  context = this.createApplicationContext();
  exceptionReporters = this.getSpringFactoriesInstances(SpringBootExceptionReporter.class, new Class[]{ConfigurableApplicationContext.class}, context);

//預處理上下文
this.prepareContext(context, environment, listeners, applicationArguments, printedBanner);

//刷新上下文
this.refreshContext(context);

//再刷新上下文
this.afterRefresh(context, applicationArguments);

  listeners.started(context);
this.callRunners(context, applicationArguments);
 } catch (Throwable var10) {

 }

try {
  listeners.running(context);
return context;
 } catch (Throwable var9) {

 }
}

既然我們想知道tomcat在SpringBoot中是怎么啟動的,那么run方法中,重點關注創建應用上下文(createApplicationContext)和刷新上下文(refreshContext)。

創建上下文

//創建上下文
protected ConfigurableApplicationContext createApplicationContext() {
 Class<?> contextClass = this.applicationContextClass;
if (contextClass == null) {
try {
   switch(this.webApplicationType) {
    case SERVLET:
                    //創建AnnotationConfigServletWebServerApplicationContext
        contextClass = Class.forName("org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext");
     break;
    case REACTIVE:
     contextClass = Class.forName("org.springframework.boot.web.reactive.context.AnnotationConfigReactiveWebServerApplicationContext");
     break;
    default:
     contextClass = Class.forName("org.springframework.context.annotation.AnnotationConfigApplicationContext");
   }
  } catch (ClassNotFoundException var3) {
   thrownew IllegalStateException("Unable create a default ApplicationContext, please specify an ApplicationContextClass", var3);
  }
 }

return (ConfigurableApplicationContext)BeanUtils.instantiateClass(contextClass);
}

這里會創建AnnotationConfigServletWebServerApplicationContext類。而AnnotationConfigServletWebServerApplicationContext類繼承了ServletWebServerApplicationContext,而這個類是最終集成了AbstractApplicationContext。

刷新上下文

//SpringApplication.java
//刷新上下文
private void refreshContext(ConfigurableApplicationContext context) {
this.refresh(context);
if (this.registerShutdownHook) {
try {
   context.registerShutdownHook();
  } catch (AccessControlException var3) {
  }
 }
}

//這里直接調用最終父類AbstractApplicationContext.refresh()方法
protected void refresh(ApplicationContext applicationContext) {
 ((AbstractApplicationContext)applicationContext).refresh();
}
//AbstractApplicationContext.java
public void refresh() throws BeansException, IllegalStateException {
synchronized(this.startupShutdownMonitor) {
this.prepareRefresh();
  ConfigurableListableBeanFactory beanFactory = this.obtainFreshBeanFactory();
this.prepareBeanFactory(beanFactory);

try {
   this.postProcessBeanFactory(beanFactory);
   this.invokeBeanFactoryPostProcessors(beanFactory);
   this.registerBeanPostProcessors(beanFactory);
   this.initMessageSource();
   this.initApplicationEventMulticaster();
   //調用各個子類的onRefresh()方法,也就說這里要回到子類:ServletWebServerApplicationContext,調用該類的onRefresh()方法
   this.onRefresh();
   this.registerListeners();
   this.finishBeanFactoryInitialization(beanFactory);
   this.finishRefresh();
  } catch (BeansException var9) {
   this.destroyBeans();
   this.cancelRefresh(var9);
   throw var9;
  } finally {
   this.resetCommonCaches();
  }

 }
}
//ServletWebServerApplicationContext.java
//在這個方法里看到了熟悉的面孔,this.createWebServer,神秘的面紗就要揭開了。
protected void onRefresh() {
super.onRefresh();
try {
this.createWebServer();
 } catch (Throwable var2) {

 }
}

//ServletWebServerApplicationContext.java
//這里是創建webServer,但是還沒有啟動tomcat,這里是通過ServletWebServerFactory創建,那么接著看下ServletWebServerFactory
private void createWebServer() {
 WebServer webServer = this.webServer;
 ServletContext servletContext = this.getServletContext();
if (webServer == null && servletContext == null) {
  ServletWebServerFactory factory = this.getWebServerFactory();
this.webServer = factory.getWebServer(new ServletContextInitializer[]{this.getSelfInitializer()});
 } elseif (servletContext != null) {
try {
   this.getSelfInitializer().onStartup(servletContext);
  } catch (ServletException var4) {

  }
 }

this.initPropertySources();
}

//接口
publicinterface ServletWebServerFactory {
    WebServer getWebServer(ServletContextInitializer... initializers);
}

//實現
AbstractServletWebServerFactory
JettyServletWebServerFactory
TomcatServletWebServerFactory
UndertowServletWebServerFactory

這里ServletWebServerFactory接口有4個實現類,對應著四種容器:

而其中我們常用的有兩個:TomcatServletWebServerFactory和JettyServletWebServerFactory。

//TomcatServletWebServerFactory.java
//這里我們使用的tomcat,所以我們查看TomcatServletWebServerFactory。到這里總算是看到了tomcat的蹤跡。
@Override
public WebServer getWebServer(ServletContextInitializer... initializers) {
 Tomcat tomcat = new Tomcat();
 File baseDir = (this.baseDirectory != null) ? this.baseDirectory : createTempDir("tomcat");
 tomcat.setBaseDir(baseDir.getAbsolutePath());
    //創建Connector對象
 Connector connector = new Connector(this.protocol);
 tomcat.getService().addConnector(connector);
 customizeConnector(connector);
 tomcat.setConnector(connector);
 tomcat.getHost().setAutoDeploy(false);
 configureEngine(tomcat.getEngine());
for (Connector additionalConnector : this.additionalTomcatConnectors) {
  tomcat.getService().addConnector(additionalConnector);
 }
 prepareContext(tomcat.getHost(), initializers);
return getTomcatWebServer(tomcat);
}

protected TomcatWebServer getTomcatWebServer(Tomcat tomcat) {
returnnew TomcatWebServer(tomcat, getPort() >= 0);
}

//Tomcat.java
//返回Engine容器,看到這里,如果熟悉tomcat源碼的話,對engine不會感到陌生。
public Engine getEngine() {
    Service service = getServer().findServices()[0];
    if (service.getContainer() != null) {
        return service.getContainer();
    }
    Engine engine = new StandardEngine();
    engine.setName( "Tomcat" );
    engine.setDefaultHost(hostname);
    engine.setRealm(createDefaultRealm());
    service.setContainer(engine);
    return engine;
}
//Engine是最高級別容器,Host是Engine的子容器,Context是Host的子容器,Wrapper是Context的子容器

getWebServer這個方法創建了Tomcat對象,并且做了兩件重要的事情:把Connector對象添加到tomcat中,configureEngine(tomcat.getEngine());

getWebServer方法返回的是TomcatWebServer。

//TomcatWebServer.java
//這里調用構造函數實例化TomcatWebServer
public TomcatWebServer(Tomcat tomcat, boolean autoStart) {
 Assert.notNull(tomcat, "Tomcat Server must not be null");
this.tomcat = tomcat;
this.autoStart = autoStart;
 initialize();
}

private void initialize() throws WebServerException {
    //在控制臺會看到這句日志
 logger.info("Tomcat initialized with port(s): " + getPortsDescription(false));
synchronized (this.monitor) {
try {
   addInstanceIdToEngineName();

   Context context = findContext();
   context.addLifecycleListener((event) -> {
    if (context.equals(event.getSource()) && Lifecycle.START_EVENT.equals(event.getType())) {
     removeServiceConnectors();
    }
   });

   //===啟動tomcat服務===
   this.tomcat.start();

   rethrowDeferredStartupExceptions();

   try {
    ContextBindings.bindClassLoader(context, context.getNamingToken(), getClass().getClassLoader());
   }
   catch (NamingException ex) {
                
   }
            
            //開啟阻塞非守護進程
   startDaemonAwaitThread();
  }
catch (Exception ex) {
   stopSilently();
   destroySilently();
   thrownew WebServerException("Unable to start embedded Tomcat", ex);
  }
 }
}
//Tomcat.java
public void start() throws LifecycleException {
 getServer();
 server.start();
}
//這里server.start又會回到TomcatWebServer的
public void stop() throws LifecycleException {
 getServer();
 server.stop();
}
//TomcatWebServer.java
//啟動tomcat服務
@Override
public void start() throws WebServerException {
synchronized (this.monitor) {
if (this.started) {
   return;
  }
try {
   addPreviouslyRemovedConnectors();
   Connector connector = this.tomcat.getConnector();
   if (connector != null && this.autoStart) {
    performDeferredLoadOnStartup();
   }
   checkThatConnectorsHaveStarted();
   this.started = true;
   //在控制臺打印這句日志,如果在yml設置了上下文,這里會打印
   logger.info("Tomcat started on port(s): " + getPortsDescription(true) + " with context path '"
     + getContextPath() + "'");
  }
catch (ConnectorStartFailedException ex) {
   stopSilently();
   throw ex;
  }
catch (Exception ex) {
   thrownew WebServerException("Unable to start embedded Tomcat server", ex);
  }
finally {
   Context context = findContext();
   ContextBindings.unbindClassLoader(context, context.getNamingToken(), getClass().getClassLoader());
  }
 }
}

//關閉tomcat服務
@Override
public void stop() throws WebServerException {
synchronized (this.monitor) {
boolean wasStarted = this.started;
try {
   this.started = false;
   try {
    stopTomcat();
    this.tomcat.destroy();
   }
   catch (LifecycleException ex) {
    
   }
  }
catch (Exception ex) {
   thrownew WebServerException("Unable to stop embedded Tomcat", ex);
  }
finally {
   if (wasStarted) {
    containerCounter.decrementAndGet();
   }
  }
 }
}

使用外置tomcat部署

配置案例

外置Tomcat啟動SpringBoot源碼點擊這里

繼承SpringBootServletInitializer

  • 外部容器部署的話,就不能依賴于Application的main函數了,而是要以類似于web.xml文件配置的方式來啟動Spring應用上下文,此時需要在啟動類中繼承SpringBootServletInitializer,并重寫configure方法;還添加 @SpringBootApplication 注解,這是為了能掃描到所有Spring注解的bean

方式一:啟動類繼承SpringBootServletInitializer實現configure:

@SpringBootApplication
public class SpringBootHelloWorldTomcatApplication extends SpringBootServletInitializer {
 @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(Application.class);
    }
}

這個類的作用與在web.xml中配置負責初始化Spring應用上下文的監聽器作用類似,只不過在這里不需要編寫額外的XML文件了。

方式二:新增加一個類繼承SpringBootServletInitializer實現configure:

public class ServletInitializer extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        //此處的Application.class為帶有@SpringBootApplication注解的啟動類
        return builder.sources(Application.class);
    }
}

pom.xml修改tomcat相關的配置

首先需要將 jar 變成war <packaging>war</packaging>

如果要將最終的打包形式改為war的話,還需要對pom.xml文件進行修改,因為spring-boot-starter-web中包含內嵌的tomcat容器,所以直接部署在外部容器會沖突報錯。因此需要將內置tomcat排除

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </exclusion>
    </exclusions>
</dependency>

在這里需要移除對嵌入式Tomcat的依賴,這樣打出的war包中,在lib目錄下才不會包含Tomcat相關的jar包,否則將會出現啟動錯誤。

但是移除了tomcat后,原始的sevlet也被移除了,因此還需要額外引入servet的包

<dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
</dependency>

注意的問題

此時打成的包的名稱應該和 application.properties 的 server.context-path=/test 保持一致

<build>
    <finalName>test</finalName>
</build>

如果不一樣發布到tomcat的webapps下上下文會變化

原理

tomcat不會主動去啟動springboot應用 ,, 所以tomcat啟動的時候肯定調用了SpringBootServletInitializer的SpringApplicationBuilder , 就會啟動springboot。

ServletContainerInitializer的實現放在jar包的META-INF/services文件夾下,有一個名為javax.servlet.ServletContainerInitializer的文件,內容就是ServletContainerInitializer的實現類的全類名。當servlet容器啟動時候就會去該文件中找到ServletContainerInitializer的實現類,從而創建它的實例調用onstartUp。這里就是用了SPI機制

HandlesTypes(WebApplicationInitializer.class)

  • @HandlesTypes傳入的類為ServletContainerInitializer感興趣的
  • 容器會自動在classpath中找到 WebApplicationInitializer,會傳入到onStartup方法的webAppInitializerClasses中
  • Set<Class<?>> webAppInitializerClasses這里面也包括之前定義的TomcatStartSpringBoot
@HandlesTypes(WebApplicationInitializer.class)
public class SpringServletContainerInitializer implements ServletContainerInitializer {
@Override
public void onStartup(@Nullable Set<Class<?>> webAppInitializerClasses, ServletContext servletContext)
      throws ServletException {

   List<WebApplicationInitializer> initializers = new LinkedList<>();

   if (webAppInitializerClasses != null) {
      for (Class<?> waiClass : webAppInitializerClasses) {
        // 如果不是接口 不是抽象 跟WebApplicationInitializer有關系  就會實例化
         if (!waiClass.isInterface() && !Modifier.isAbstract(waiClass.getModifiers()) &&
               WebApplicationInitializer.class.isAssignableFrom(waiClass)) {
            try {
               initializers.add((WebApplicationInitializer)
                     ReflectionUtils.accessibleConstructor(waiClass).newInstance());
            }
            catch (Throwable ex) {
               thrownew ServletException("Failed to instantiate WebApplicationInitializer class", ex);
            }
         }
      }
   }

   if (initializers.isEmpty()) {
      servletContext.log("No Spring WebApplicationInitializer types detected on classpath");
      return;
   }

   servletContext.log(initializers.size() + " Spring WebApplicationInitializers detected on classpath");
   // 排序
   AnnotationAwareOrderComparator.sort(initializers);
   for (WebApplicationInitializer initializer : initializers) {
      initializer.onStartup(servletContext);
   }
}
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
   // Logger initialization is deferred in case an ordered
   // LogServletContextInitializer is being used
   this.logger = LogFactory.getLog(getClass());
   WebApplicationContext rootApplicationContext = createRootApplicationContext(servletContext);
   if (rootApplicationContext != null) {
      servletContext.addListener(new SpringBootContextLoaderListener(rootApplicationContext, servletContext));
   }
   else {
      this.logger.debug("No ContextLoaderListener registered, as createRootApplicationContext() did not "
            + "return an application context");
   }
}

SpringBootServletInitializer

protected WebApplicationContext createRootApplicationContext(ServletContext servletContext) {
   SpringApplicationBuilder builder = createSpringApplicationBuilder();
   builder.main(getClass());
   ApplicationContext parent = getExistingRootWebApplicationContext(servletContext);
   if (parent != null) {
      this.logger.info("Root context already created (using as parent).");
      servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, null);
      builder.initializers(new ParentContextApplicationContextInitializer(parent));
   }
   builder.initializers(new ServletContextApplicationContextInitializer(servletContext));
   builder.contextClass(AnnotationConfigServletWebServerApplicationContext.class);
   // 調用configure
   builder = configure(builder); //①
   builder.listeners(new WebEnvironmentPropertySourceInitializer(servletContext));
   SpringApplication application = builder.build();//②
   if (application.getAllSources().isEmpty()
         && MergedAnnotations.from(getClass(), SearchStrategy.TYPE_HIERARCHY).isPresent(Configuration.class)) {
      application.addPrimarySources(Collections.singleton(getClass()));
   }
   Assert.state(!application.getAllSources().isEmpty(),
         "No SpringApplication sources have been defined. Either override the "
               + "configure method or add an @Configuration annotation");
   // Ensure error pages are registered
   if (this.registerErrorPageFilter) {
      application.addPrimarySources(Collections.singleton(ErrorPageFilterConfiguration.class));
   }
   application.setRegisterShutdownHook(false);
   return run(application);//③
}

① 當調用configure就會來到TomcatStartSpringBoot .configure,將Springboot啟動類傳入到builder.source

@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
    return builder.sources(Application.class);
}

② 調用SpringApplication application = builder.build(); 就會根據傳入的Springboot啟動類來構建一個SpringApplication

public SpringApplication build(String... args) {
   configureAsChildIfNecessary(args);
   this.application.addPrimarySources(this.sources);
   return this.application;
}

③ 調用 return run(application); 就會啟動springboot應用

protected WebApplicationContext run(SpringApplication application) {
   return (WebApplicationContext) application.run();
}

也就相當于Main函數啟動:

public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
}

之后的流程就與上面 使用內置Tomcat的Main函數一致了

責任編輯:武曉燕 來源: Seven97
相關推薦

2023-05-05 06:54:07

MySQL數據查詢

2023-10-06 14:49:21

SentinelHystrixtimeout

2024-05-29 07:47:30

SpringJava@Resource

2023-10-30 11:40:36

OOM線程池單線程

2023-03-30 08:26:31

DNSTCPUDP

2023-03-31 08:16:39

CDN網絡數據

2023-11-29 07:23:04

參數springboto

2024-03-12 08:37:32

asyncawaitJavaScript

2021-10-26 17:26:46

JVM架構模型

2023-11-27 07:26:42

Springboot容器

2023-08-08 08:23:08

Spring日志?線程池

2025-09-03 04:11:00

2022-07-08 09:27:48

CSSIFC模型

2024-02-02 11:03:11

React數據Ref

2024-01-19 08:25:38

死鎖Java通信

2023-01-10 08:43:15

定義DDD架構

2024-02-04 00:00:00

Effect數據組件

2023-07-26 13:11:21

ChatGPT平臺工具

2024-01-02 12:05:26

Java并發編程

2023-08-01 12:51:18

WebGPT機器學習模型
點贊
收藏

51CTO技術棧公眾號

九九久久成人| 免费精品视频一区| 91在线在线观看| 欧美激情极品| 亚洲亚裔videos黑人hd| 好吊日视频在线观看| 亚洲r级在线视频| 色播五月综合网| 成人黄色综合网站| 中文字幕在线中文| 理论电影国产精品| 日日夜夜精品网站| 午夜亚洲精品| 奇米影视首页 狠狠色丁香婷婷久久综合| 久久影院一区| 国产成人欧美在线观看| 大奶在线精品| 久久久久久中文字幕| 91嫩草精品| 国内偷自视频区视频综合 | 成人有码视频在线播放| 综合国产视频| 国产一区二区在线播放| 91嫩草在线| 成人xxxx视频| 99久久综合| 国产一区二区三区无遮挡| 激情亚洲成人| 亚洲不卡1区| 成人激情小说乱人伦| 黄色片视频在线播放| 99精品国产高清一区二区麻豆| 欧美zozo| 99视频一区| 天天av天天翘天天综合网 | 黄色欧美在线| 国产91精品露脸国语对白| 一本到三区不卡视频| 中文字幕精品在线视频| av动漫在线观看| 97视频一区| 亚洲精品高清视频在线观看| 在线不卡免费av| 蜜桃网站成人| 精品在线手机视频| 91地址最新发布| av资源一区| 日韩中文字幕在线精品| 日本高清久久| 国产精品27p| 亚洲在线视频| 日韩网站在线免费观看| 国产精品久久久久久久久免费丝袜| 性色a∨人人爽网站| 欧美精品一级二级| 国产成人免费9x9x人网站视频| 欧美激情欧美激情| 国产精品啊啊啊| 青青青在线观看视频| 中文字幕视频一区二区三区久| 加勒比一区二区三区在线| 亚洲国产欧美一区二区三区同亚洲| 九九色在线视频| 91精品国产91久久久| 欧美1区视频| 欧美精品久久久久久久久久久| 一区二区三区在线观看视频| 女囚岛在线观看| 国产91精品视频在线观看| 国产亚洲福利| 男生操女生视频网站| 日韩精品一区二区在线| 群体交乱之放荡娇妻一区二区| 日本精品一区二区三区视频| 国产精品大尺度| 91探花在线观看| 国产精品一区二区电影| 岛国av在线一区| 久久精品色图| 欧美激情视频在线观看| 久久久久久黄| 在线国产视频| 超碰91人人草人人干| 免费看的黄色欧美网站| 欧美r片在线| 一区二区中文字幕| 亚洲国产清纯| 22288色视频在线观看| 这里只有精品久久| 国产日韩亚洲欧美精品| 久久国产情侣| 尤物yw午夜国产精品视频明星| 欧美精品首页| 国产精品久久久久久精| 色av中文字幕一区| 老司机免费视频一区二区| 欧美成熟毛茸茸| 国产成人中文字幕| 国产夜色精品一区二区av| 9999在线视频| 欧美国产一区二区在线| 伊人色综合久久天天人手人婷| 亚洲国产天堂| 中国女人做爰视频| 亚洲精品一区二区三区精华液| 中国成人一区| 翔田千里一区| 国产精品免费视频久久久| 久久久美女艺术照精彩视频福利播放| 九色porny自拍视频在线播放| 久草精品电影| 在线观看国产一区二区| 狠狠综合久久av一区二区蜜桃| 久久九九国产视频| 久久影视电视剧免费网站| 国产成人超碰人人澡人人澡| 七七成人影院| 日韩资源av在线| 欧美sm极限捆绑bd| 亚洲美洲欧洲综合国产一区| 欧洲视频在线免费观看| 国产中文欧美精品| 偷偷要91色婷婷| 91精品亚洲| 国产九九在线| 国产一区二区自拍| 欧美日韩成人一区二区| 一区二区亚洲| 国产日产一区二区三区| 久久久久久久久久码影片| 在线电影院国产精品| 亚洲人成免费| 午夜av在线免费观看| 日本一区二区三区视频免费看| 欧美一卡2卡3卡4卡| 日韩高清不卡一区二区三区| 2024最新电影免费在线观看| 欧美色欧美亚洲另类七区| 日韩欧美国产一区二区在线播放 | 欧美一区二区三区影视| 在线视频观看日韩| 日本中文在线观看| 日本在线视频一区| 亚洲韩国青草视频| 福利一区福利二区| 一区中文字幕电影| 国产主播福利| 亚洲在线www| 337p亚洲精品色噜噜噜| 日韩精品乱码av一区二区| av手机在线观看| 欧美 日韩 亚洲 一区| 久久久久久九九九| 亚洲一区二区欧美激情| 亚洲天天综合| 牛牛电影国产一区二区| 亚洲理论电影在线观看| 欧美激情视频给我| 精品国产乱码久久久久久天美| 欧美黄色一区二区| 黑人精品视频| 六月丁香婷婷在线| 国产剧情日韩欧美| 日韩午夜在线观看视频| 北条麻妃国产九九精品视频| 国产精品久av福利在线观看| 久草在线中文888| 欧美日韩亚洲综合一区二区三区激情在线 | 一级日本在线| 特黄特黄的视频| av电影免费| 99久久99久久精品| 国产精品va在线播放| 在线看国产一区| 国产日本欧美一区二区| 韩国精品在线观看| 另类一区二区三区| 成人免费一区二区三区视频网站| 天天夜碰日日摸日日澡性色av| 日本一区二区三区在线播放| 精品国产电影一区二区| 久久色中文字幕| 亚洲天堂一区二区三区四区| 少妇视频一区| 爱爱爱免费视频在线观看| 亚洲人成小说| 亚洲成人天堂网| 日本香蕉视频在线观看| 成人在线激情视频| 欧美黑人xxxx| 亚洲福利视频在线| 一区二区三区四区精品在线视频 | 久久xxxx| 精品国产一级毛片| 日本特级黄色大片| 国产人久久人人人人爽| 欧美一区二区| 91蝌蚪精品视频| 欧美jizzhd欧美| 九七伦理97伦理|