3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

Spring Boot文档阅读比较-@SpringBootApplication Auto Configuration

發(fā)布時(shí)間:2025/3/15 javascript 14 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Spring Boot文档阅读比较-@SpringBootApplication Auto Configuration 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

maven如下:

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.4.3</version><relativePath/> <!-- lookup parent from repository --></parent><groupId>cn.it1995</groupId><artifactId>demo</artifactId><version>0.0.1</version><name>demo</name><description>Demo project for Spring Boot</description><properties><java.version>1.8</java.version></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><excludes><exclude><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></exclude></excludes></configuration></plugin></plugins></build></project>

創(chuàng)建啟動(dòng)類

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

main函數(shù)引導(dǎo)了SpringBoot應(yīng)用,他做了如下的事情:

1. 創(chuàng)建SpringBoot上下文實(shí)例;

2. 接收命令行并設(shè)置到Spring屬性;

3. 加載每一個(gè)Spring相關(guān)的配置Bean,可以對項(xiàng)目做其他操作。

?

@SpringBootApplication注解

這個(gè)注解包含了下面3個(gè)注解:

1. @SpringBootConfiguration:

@SpringBootConfiguration是SpringBoot2的中注解,之前使用的注解是@Configuration。可以使用@Configuration代替。

@Configuration表示這是個(gè)配置類,可被SpringBoot掃描。Spring會自動(dòng)猜測配置bean。

可以使用下面的配置進(jìn)行排除

? ? ? ? ? a. 使用excludeName()

? ? ? ? ? b. 使用spring.autofigure.exclude在application.peroperties中

如下例子:

@EnableAutoConfiguration(excludeName = {"multipartResolver","mbeanServer"})

2. @EnableAutoConfiguration:

開啟自動(dòng)配置Spring應(yīng)用上下文

?

3. @ComponentScan:

這個(gè)注解支持Spring XML的context:component-scan元素。

對于SpringBoot項(xiàng)目就是用于掃描@Compoent的。

?

啟動(dòng)應(yīng)用,并檢測其日志

將main函數(shù)改成如下:

@SpringBootApplication public class DemoApplication {public static void main(String[] args) {ConfigurableApplicationContext ctx = SpringApplication.run(DemoApplication.class, args);String[] beanDefinitionNames = ctx.getBeanDefinitionNames();Arrays.sort(beanDefinitionNames);for(String beanName : beanDefinitionNames){System.out.println(beanName);}}}

其打印如下:

D:\java8\content\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:D:\idea\content\lib\idea_rt.jar=53696:D:\idea\content\bin -Dfile.encoding=UTF-8 -classpath D:\java8\content\jre\lib\charsets.jar;D:\java8\content\jre\lib\deploy.jar;D:\java8\content\jre\lib\ext\access-bridge-64.jar;D:\java8\content\jre\lib\ext\cldrdata.jar;D:\java8\content\jre\lib\ext\dnsns.jar;D:\java8\content\jre\lib\ext\jaccess.jar;D:\java8\content\jre\lib\ext\jfxrt.jar;D:\java8\content\jre\lib\ext\localedata.jar;D:\java8\content\jre\lib\ext\nashorn.jar;D:\java8\content\jre\lib\ext\sunec.jar;D:\java8\content\jre\lib\ext\sunjce_provider.jar;D:\java8\content\jre\lib\ext\sunmscapi.jar;D:\java8\content\jre\lib\ext\sunpkcs11.jar;D:\java8\content\jre\lib\ext\zipfs.jar;D:\java8\content\jre\lib\javaws.jar;D:\java8\content\jre\lib\jce.jar;D:\java8\content\jre\lib\jfr.jar;D:\java8\content\jre\lib\jfxswt.jar;D:\java8\content\jre\lib\jsse.jar;D:\java8\content\jre\lib\management-agent.jar;D:\java8\content\jre\lib\plugin.jar;D:\java8\content\jre\lib\resources.jar;D:\java8\content\jre\lib\rt.jar;D:\IDEAProject\SpringBootConfig\target\classes;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-web\2.4.3\spring-boot-starter-web-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter\2.4.3\spring-boot-starter-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot\2.4.3\spring-boot-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-autoconfigure\2.4.3\spring-boot-autoconfigure-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-logging\2.4.3\spring-boot-starter-logging-2.4.3.jar;D:\mavenRepository\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;D:\mavenRepository\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;D:\mavenRepository\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;D:\mavenRepository\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;D:\mavenRepository\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;D:\mavenRepository\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;D:\mavenRepository\repository\org\yaml\snakeyaml\1.27\snakeyaml-1.27.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-json\2.4.3\spring-boot-starter-json-2.4.3.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-databind\2.11.4\jackson-databind-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.4\jackson-annotations-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-core\2.11.4\jackson-core-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.11.4\jackson-datatype-jdk8-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.11.4\jackson-datatype-jsr310-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.11.4\jackson-module-parameter-names-2.11.4.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-tomcat\2.4.3\spring-boot-starter-tomcat-2.4.3.jar;D:\mavenRepository\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.43\tomcat-embed-core-9.0.43.jar;D:\mavenRepository\repository\org\glassfish\jakarta.el\3.0.3\jakarta.el-3.0.3.jar;D:\mavenRepository\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.43\tomcat-embed-websocket-9.0.43.jar;D:\mavenRepository\repository\org\springframework\spring-web\5.3.4\spring-web-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-beans\5.3.4\spring-beans-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-webmvc\5.3.4\spring-webmvc-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-aop\5.3.4\spring-aop-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-context\5.3.4\spring-context-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-expression\5.3.4\spring-expression-5.3.4.jar;D:\mavenRepository\repository\org\projectlombok\lombok\1.18.18\lombok-1.18.18.jar;D:\mavenRepository\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;D:\mavenRepository\repository\org\springframework\spring-core\5.3.4\spring-core-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-jcl\5.3.4\spring-jcl-5.3.4.jar cn.it1995.demo.DemoApplication. ____ _ __ _ _/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \\\/ ___)| |_)| | | | | || (_| | ) ) ) )' |____| .__|_| |_|_| |_\__, | / / / /=========|_|==============|___/=/_/_/_/:: Spring Boot :: (v2.4.3)2021-03-15 14:23:11.723 INFO 10504 --- [ main] cn.it1995.demo.DemoApplication : Starting DemoApplication using Java 1.8.0_181 on DESKTOP-82CT4I6 with PID 10504 (D:\IDEAProject\SpringBootConfig\target\classes started by cff in D:\IDEAProject\SpringBootConfig) 2021-03-15 14:23:11.731 INFO 10504 --- [ main] cn.it1995.demo.DemoApplication : No active profile set, falling back to default profiles: default 2021-03-15 14:23:12.341 INFO 10504 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2021-03-15 14:23:12.347 INFO 10504 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2021-03-15 14:23:12.347 INFO 10504 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.43] 2021-03-15 14:23:12.387 INFO 10504 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2021-03-15 14:23:12.387 INFO 10504 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 619 ms 2021-03-15 14:23:12.490 INFO 10504 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' 2021-03-15 14:23:12.588 INFO 10504 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' 2021-03-15 14:23:12.594 INFO 10504 --- [ main] cn.it1995.demo.DemoApplication : Started DemoApplication in 1.112 seconds (JVM running for 1.818) applicationAvailability applicationTaskExecutor basicErrorController beanNameHandlerMapping beanNameViewResolver characterEncodingFilter conventionErrorViewResolver defaultServletHandlerMapping defaultViewResolver demoApplication dispatcherServlet dispatcherServletRegistration error errorAttributes errorPageCustomizer errorPageRegistrarBeanPostProcessor flashMapManager formContentFilter handlerExceptionResolver handlerFunctionAdapter httpRequestHandlerAdapter jacksonObjectMapper jacksonObjectMapperBuilder jsonComponentModule lifecycleProcessor localeCharsetMappingsCustomizer localeResolver mappingJackson2HttpMessageConverter mbeanExporter mbeanServer messageConverters multipartConfigElement multipartResolver mvcContentNegotiationManager mvcConversionService mvcHandlerMappingIntrospector mvcPathMatcher mvcPatternParser mvcResourceUrlProvider mvcUriComponentsContributor mvcUrlPathHelper mvcValidator mvcViewResolver objectNamingStrategy org.springframework.aop.config.internalAutoProxyCreator org.springframework.boot.autoconfigure.AutoConfigurationPackages org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration org.springframework.boot.autoconfigure.aop.AopAutoConfiguration org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration org.springframework.boot.context.internalConfigurationPropertiesBinder org.springframework.boot.context.internalConfigurationPropertiesBinderFactory org.springframework.boot.context.properties.BoundConfigurationProperties org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter org.springframework.context.annotation.internalAutowiredAnnotationProcessor org.springframework.context.annotation.internalCommonAnnotationProcessor org.springframework.context.annotation.internalConfigurationAnnotationProcessor org.springframework.context.event.internalEventListenerFactory org.springframework.context.event.internalEventListenerProcessor parameterNamesModule preserveErrorControllerTargetClassPostProcessor propertySourcesPlaceholderConfigurer requestContextFilter requestMappingHandlerAdapter requestMappingHandlerMapping resourceHandlerMapping restTemplateBuilder restTemplateBuilderConfigurer routerFunctionMapping server-org.springframework.boot.autoconfigure.web.ServerProperties servletWebServerFactoryCustomizer simpleControllerHandlerAdapter spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties spring.web-org.springframework.boot.autoconfigure.web.WebProperties springApplicationAdminRegistrar standardJacksonObjectMapperBuilderCustomizer stringHttpMessageConverter taskExecutorBuilder taskSchedulerBuilder themeResolver tomcatServletWebServerFactory tomcatServletWebServerFactoryCustomizer tomcatWebServerFactoryCustomizer viewControllerHandlerMapping viewNameTranslator viewResolver webServerFactoryCustomizerBeanPostProcessor websocketServletWebServerCustomizer welcomePageHandlerMapping

從中可以看到有很多bean被注冊了??梢约由?/p> -Ddebug=true

用于查看調(diào)試細(xì)節(jié)

這樣就可以看到細(xì)節(jié)了:

D:\java8\content\bin\java.exe -Ddebug=true -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:D:\idea\content\lib\idea_rt.jar=54820:D:\idea\content\bin -Dfile.encoding=UTF-8 -classpath D:\java8\content\jre\lib\charsets.jar;D:\java8\content\jre\lib\deploy.jar;D:\java8\content\jre\lib\ext\access-bridge-64.jar;D:\java8\content\jre\lib\ext\cldrdata.jar;D:\java8\content\jre\lib\ext\dnsns.jar;D:\java8\content\jre\lib\ext\jaccess.jar;D:\java8\content\jre\lib\ext\jfxrt.jar;D:\java8\content\jre\lib\ext\localedata.jar;D:\java8\content\jre\lib\ext\nashorn.jar;D:\java8\content\jre\lib\ext\sunec.jar;D:\java8\content\jre\lib\ext\sunjce_provider.jar;D:\java8\content\jre\lib\ext\sunmscapi.jar;D:\java8\content\jre\lib\ext\sunpkcs11.jar;D:\java8\content\jre\lib\ext\zipfs.jar;D:\java8\content\jre\lib\javaws.jar;D:\java8\content\jre\lib\jce.jar;D:\java8\content\jre\lib\jfr.jar;D:\java8\content\jre\lib\jfxswt.jar;D:\java8\content\jre\lib\jsse.jar;D:\java8\content\jre\lib\management-agent.jar;D:\java8\content\jre\lib\plugin.jar;D:\java8\content\jre\lib\resources.jar;D:\java8\content\jre\lib\rt.jar;D:\IDEAProject\SpringBootConfig\target\classes;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-web\2.4.3\spring-boot-starter-web-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter\2.4.3\spring-boot-starter-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot\2.4.3\spring-boot-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-autoconfigure\2.4.3\spring-boot-autoconfigure-2.4.3.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-logging\2.4.3\spring-boot-starter-logging-2.4.3.jar;D:\mavenRepository\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;D:\mavenRepository\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;D:\mavenRepository\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;D:\mavenRepository\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;D:\mavenRepository\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;D:\mavenRepository\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;D:\mavenRepository\repository\org\yaml\snakeyaml\1.27\snakeyaml-1.27.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-json\2.4.3\spring-boot-starter-json-2.4.3.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-databind\2.11.4\jackson-databind-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.4\jackson-annotations-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\core\jackson-core\2.11.4\jackson-core-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.11.4\jackson-datatype-jdk8-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.11.4\jackson-datatype-jsr310-2.11.4.jar;D:\mavenRepository\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.11.4\jackson-module-parameter-names-2.11.4.jar;D:\mavenRepository\repository\org\springframework\boot\spring-boot-starter-tomcat\2.4.3\spring-boot-starter-tomcat-2.4.3.jar;D:\mavenRepository\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.43\tomcat-embed-core-9.0.43.jar;D:\mavenRepository\repository\org\glassfish\jakarta.el\3.0.3\jakarta.el-3.0.3.jar;D:\mavenRepository\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.43\tomcat-embed-websocket-9.0.43.jar;D:\mavenRepository\repository\org\springframework\spring-web\5.3.4\spring-web-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-beans\5.3.4\spring-beans-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-webmvc\5.3.4\spring-webmvc-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-aop\5.3.4\spring-aop-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-context\5.3.4\spring-context-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-expression\5.3.4\spring-expression-5.3.4.jar;D:\mavenRepository\repository\org\projectlombok\lombok\1.18.18\lombok-1.18.18.jar;D:\mavenRepository\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;D:\mavenRepository\repository\org\springframework\spring-core\5.3.4\spring-core-5.3.4.jar;D:\mavenRepository\repository\org\springframework\spring-jcl\5.3.4\spring-jcl-5.3.4.jar cn.it1995.demo.DemoApplication. ____ _ __ _ _/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \\\/ ___)| |_)| | | | | || (_| | ) ) ) )' |____| .__|_| |_|_| |_\__, | / / / /=========|_|==============|___/=/_/_/_/:: Spring Boot :: (v2.4.3)2021-03-15 14:49:51.411 INFO 24156 --- [ main] cn.it1995.demo.DemoApplication : Starting DemoApplication using Java 1.8.0_181 on DESKTOP-82CT4I6 with PID 24156 (D:\IDEAProject\SpringBootConfig\target\classes started by cff in D:\IDEAProject\SpringBootConfig) 2021-03-15 14:49:51.413 INFO 24156 --- [ main] cn.it1995.demo.DemoApplication : No active profile set, falling back to default profiles: default 2021-03-15 14:49:51.414 DEBUG 24156 --- [ main] o.s.boot.SpringApplication : Loading source class cn.it1995.demo.DemoApplication 2021-03-15 14:49:51.450 DEBUG 24156 --- [ main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@44c03695 2021-03-15 14:49:51.968 DEBUG 24156 --- [ main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: D:\mavenRepository\repository\org\springframework\boot\spring-boot\2.4.3\spring-boot-2.4.3.jar 2021-03-15 14:49:51.969 DEBUG 24156 --- [ main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: D:\mavenRepository\repository\org\springframework\boot\spring-boot\2.4.3\spring-boot-2.4.3.jar 2021-03-15 14:49:51.969 DEBUG 24156 --- [ main] .s.b.w.e.t.TomcatServletWebServerFactory : None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. 2021-03-15 14:49:51.980 INFO 24156 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2021-03-15 14:49:51.986 INFO 24156 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2021-03-15 14:49:51.986 INFO 24156 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.43] 2021-03-15 14:49:52.025 INFO 24156 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2021-03-15 14:49:52.025 DEBUG 24156 --- [ main] w.s.c.ServletWebServerApplicationContext : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] 2021-03-15 14:49:52.025 INFO 24156 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 575 ms 2021-03-15 14:49:52.033 DEBUG 24156 --- [ main] o.s.b.w.s.ServletContextInitializerBeans : Mapping filters: characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 2021-03-15 14:49:52.034 DEBUG 24156 --- [ main] o.s.b.w.s.ServletContextInitializerBeans : Mapping servlets: dispatcherServlet urls=[/] 2021-03-15 14:49:52.045 DEBUG 24156 --- [ main] o.s.b.w.s.f.OrderedRequestContextFilter : Filter 'requestContextFilter' configured for use 2021-03-15 14:49:52.045 DEBUG 24156 --- [ main] s.b.w.s.f.OrderedCharacterEncodingFilter : Filter 'characterEncodingFilter' configured for use 2021-03-15 14:49:52.045 DEBUG 24156 --- [ main] o.s.b.w.s.f.OrderedFormContentFilter : Filter 'formContentFilter' configured for use 2021-03-15 14:49:52.125 INFO 24156 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' 2021-03-15 14:49:52.130 DEBUG 24156 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice 2021-03-15 14:49:52.159 DEBUG 24156 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 mappings in 'requestMappingHandlerMapping' 2021-03-15 14:49:52.180 DEBUG 24156 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping' 2021-03-15 14:49:52.184 DEBUG 24156 --- [ main] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice 2021-03-15 14:49:52.199 DEBUG 24156 --- [ main] inMXBeanRegistrar$SpringApplicationAdmin : Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' 2021-03-15 14:49:52.225 INFO 24156 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' 2021-03-15 14:49:52.239 DEBUG 24156 --- [ main] ConditionEvaluationReportLoggingListener : ============================ CONDITIONS EVALUATION REPORT ============================Positive matches: -----------------AopAutoConfiguration matched:- @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)AopAutoConfiguration.ClassProxyingConfiguration matched:- @ConditionalOnMissingClass did not find unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)- @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)DispatcherServletAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)- Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)- DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:- @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:- @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:- @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)ErrorMvcAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)ErrorMvcAutoConfiguration#basicErrorController matched:- @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration#errorAttributes matched:- @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:- @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:- @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)- ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:- @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:- @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)GenericCacheConfiguration matched:- Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)HttpEncodingAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)- @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)HttpEncodingAutoConfiguration#characterEncodingFilter matched:- @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)HttpMessageConvertersAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)- NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)HttpMessageConvertersAutoConfiguration#messageConverters matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:- @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)JacksonAutoConfiguration matched:- @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:- @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:- @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:- @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:- @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:- @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)- @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)- @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:- @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)JmxAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)- @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)JmxAutoConfiguration#mbeanExporter matched:- @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)JmxAutoConfiguration#mbeanServer matched:- @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)JmxAutoConfiguration#objectNamingStrategy matched:- @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)LifecycleAutoConfiguration#defaultLifecycleProcessor matched:- @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)MultipartAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)- @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)MultipartAutoConfiguration#multipartConfigElement matched:- @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)MultipartAutoConfiguration#multipartResolver matched:- @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)NoOpCacheConfiguration matched:- Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:- @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)RestTemplateAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)- NoneNestedConditions 0 matched 1 did not; NestedCondition on RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition)RestTemplateAutoConfiguration#restTemplateBuilder matched:- @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)RestTemplateAutoConfiguration#restTemplateBuilderConfigurer matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)ServletWebServerFactoryAutoConfiguration matched:- @ConditionalOnClass found required class 'javax.servlet.ServletRequest' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:- @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)- @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)SimpleCacheConfiguration matched:- Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)SpringApplicationAdminJmxAutoConfiguration matched:- @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:- @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)TaskExecutionAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)TaskExecutionAutoConfiguration#applicationTaskExecutor matched:- @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition)TaskExecutionAutoConfiguration#taskExecutorBuilder matched:- @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)TaskSchedulingAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched:- @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)- @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration#formContentFilter matched:- @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)- @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:- @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:- @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:- @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:- @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:- @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:- @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)WebSocketServletAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' (OnClassCondition)- found 'session' scope (OnWebApplicationCondition)WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:- @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:- @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)Negative matches: -----------------ActiveMQAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)AopAutoConfiguration.AspectJAutoProxyingConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition)ArtemisAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)BatchAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)CacheAutoConfiguration:Did not match:- @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition)Matched:- @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)- Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)CaffeineCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)CassandraAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)CassandraDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)CassandraReactiveDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)CassandraReactiveRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)CassandraRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)ClientHttpConnectorAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)CodecsAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)CouchbaseAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)CouchbaseCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)CouchbaseDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)CouchbaseReactiveDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)CouchbaseReactiveRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)CouchbaseRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)DataSourceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)DataSourceTransactionManagerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:Did not match:- @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)EhCacheCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' (OnClassCondition)ElasticsearchDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate' (OnClassCondition)ElasticsearchRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition)ElasticsearchRestClientAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestHighLevelClient' (OnClassCondition)EmbeddedLdapAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)EmbeddedMongoAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:Did not match:- @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)ErrorWebFluxAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)FlywayAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)FreeMarkerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition)GroovyTemplateAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)GsonAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)GsonHttpMessageConvertersConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)H2ConsoleAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition)HazelcastAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)HazelcastCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)HazelcastJpaDependencyAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)HibernateJpaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' (OnClassCondition)HttpHandlerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)HypermediaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)InfinispanCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)InfluxDbAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)IntegrationAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)JCacheCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)JdbcRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)JdbcTemplateAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)JerseyAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)JmsAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.jms.Message' (OnClassCondition)JndiConnectionFactoryAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)JndiDataSourceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)JooqAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)JpaRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)JsonbAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)JsonbHttpMessageConvertersConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)JtaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition)KafkaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)LdapAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)LdapRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)LiquibaseAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)MailSenderAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.mail.internet.MimeMessage' (OnClassCondition)MailSenderValidatorAutoConfiguration:Did not match:- @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition)MessageSourceAutoConfiguration:Did not match:- ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)MongoAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)MongoDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)MongoReactiveAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)MongoReactiveDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)MongoReactiveRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)MongoRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)MustacheAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)Neo4jAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)Neo4jDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)Neo4jReactiveDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)Neo4jReactiveRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)Neo4jRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)OAuth2ClientAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)OAuth2ResourceServerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken' (OnClassCondition)PersistenceExceptionTranslationAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)ProjectInfoAutoConfiguration#buildProperties:Did not match:- @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)ProjectInfoAutoConfiguration#gitProperties:Did not match:- GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)QuartzAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)R2dbcAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)R2dbcDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)R2dbcRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)R2dbcTransactionManagerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)RSocketMessagingAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)RSocketRequesterAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)RSocketSecurityAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)RSocketServerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)RSocketStrategiesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition)RabbitAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)ReactiveElasticsearchRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient' (OnClassCondition)ReactiveElasticsearchRestClientAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'reactor.netty.http.client.HttpClient' (OnClassCondition)ReactiveOAuth2ClientAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)ReactiveOAuth2ResourceServerAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)ReactiveSecurityAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)ReactiveUserDetailsServiceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)ReactiveWebServerFactoryAutoConfiguration:Did not match:- @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)RedisAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)RedisCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)RedisReactiveAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)RedisRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)RepositoryRestMvcAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)Saml2RelyingPartyAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)SecurityAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)SecurityFilterAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)SendGridAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)ServletWebServerFactoryAutoConfiguration#forwardedHeaderFilter:Did not match:- @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)ServletWebServerFactoryConfiguration.EmbeddedJetty:Did not match:- @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)ServletWebServerFactoryConfiguration.EmbeddedUndertow:Did not match:- @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)SessionAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)SolrAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition)SolrRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.SolrClient' (OnClassCondition)SpringDataWebAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' (OnClassCondition)TaskSchedulingAutoConfiguration#taskScheduler:Did not match:- @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)ThymeleafAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.thymeleaf.spring5.SpringTemplateEngine' (OnClassCondition)TransactionAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)UserDetailsServiceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)ValidationAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition)WebClientAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)WebFluxAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)WebMvcAutoConfiguration#hiddenHttpMethodFilter:Did not match:- @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:Did not match:- @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:Did not match:- @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)WebServiceTemplateAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)WebServicesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)WebSocketMessagingAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)WebSocketReactiveAutoConfiguration:Did not match:- @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition)WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)XADataSourceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' (OnClassCondition)Exclusions: -----------NoneUnconditional classes: ----------------------org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfigurationorg.springframework.boot.autoconfigure.context.LifecycleAutoConfigurationorg.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfigurationorg.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfigurationorg.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration2021-03-15 14:49:52.245 INFO 24156 --- [ main] cn.it1995.demo.DemoApplication : Started DemoApplication in 1.104 seconds (JVM running for 1.723) applicationAvailability applicationTaskExecutor basicErrorController beanNameHandlerMapping beanNameViewResolver characterEncodingFilter conventionErrorViewResolver defaultServletHandlerMapping defaultViewResolver demoApplication dispatcherServlet dispatcherServletRegistration error errorAttributes errorPageCustomizer errorPageRegistrarBeanPostProcessor flashMapManager formContentFilter handlerExceptionResolver handlerFunctionAdapter httpRequestHandlerAdapter jacksonObjectMapper jacksonObjectMapperBuilder jsonComponentModule lifecycleProcessor localeCharsetMappingsCustomizer localeResolver mappingJackson2HttpMessageConverter mbeanExporter mbeanServer messageConverters multipartConfigElement multipartResolver mvcContentNegotiationManager mvcConversionService mvcHandlerMappingIntrospector mvcPathMatcher mvcPatternParser mvcResourceUrlProvider mvcUriComponentsContributor mvcUrlPathHelper mvcValidator mvcViewResolver objectNamingStrategy org.springframework.aop.config.internalAutoProxyCreator org.springframework.boot.autoconfigure.AutoConfigurationPackages org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration org.springframework.boot.autoconfigure.aop.AopAutoConfiguration org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration org.springframework.boot.context.internalConfigurationPropertiesBinder org.springframework.boot.context.internalConfigurationPropertiesBinderFactory org.springframework.boot.context.properties.BoundConfigurationProperties org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter org.springframework.context.annotation.internalAutowiredAnnotationProcessor org.springframework.context.annotation.internalCommonAnnotationProcessor org.springframework.context.annotation.internalConfigurationAnnotationProcessor org.springframework.context.event.internalEventListenerFactory org.springframework.context.event.internalEventListenerProcessor parameterNamesModule preserveErrorControllerTargetClassPostProcessor propertySourcesPlaceholderConfigurer requestContextFilter requestMappingHandlerAdapter requestMappingHandlerMapping resourceHandlerMapping restTemplateBuilder restTemplateBuilderConfigurer routerFunctionMapping server-org.springframework.boot.autoconfigure.web.ServerProperties servletWebServerFactoryCustomizer simpleControllerHandlerAdapter spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties spring.web-org.springframework.boot.autoconfigure.web.WebProperties springApplicationAdminRegistrar standardJacksonObjectMapperBuilderCustomizer stringHttpMessageConverter taskExecutorBuilder taskSchedulerBuilder themeResolver tomcatServletWebServerFactory tomcatServletWebServerFactoryCustomizer tomcatWebServerFactoryCustomizer viewControllerHandlerMapping viewNameTranslator viewResolver webServerFactoryCustomizerBeanPostProcessor websocketServletWebServerCustomizer welcomePageHandlerMapping

?

總結(jié)

以上是生活随笔為你收集整理的Spring Boot文档阅读比较-@SpringBootApplication Auto Configuration的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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

中文字幕无码av波多野吉衣 | 成人亚洲精品久久久久 | 亚洲理论电影在线观看 | 99麻豆久久久国产精品免费 | 一本大道久久东京热无码av | 国内精品久久久久久中文字幕 | 青春草在线视频免费观看 | 色婷婷久久一区二区三区麻豆 | 波多野结衣av在线观看 | 久久99热只有频精品8 | 亚洲色偷偷男人的天堂 | 波多野42部无码喷潮在线 | 无码精品人妻一区二区三区av | 在线看片无码永久免费视频 | 无码免费一区二区三区 | 人人澡人人妻人人爽人人蜜桃 | 97精品人妻一区二区三区香蕉 | 中文字幕无码人妻少妇免费 | 免费人成在线视频无码 | 99久久无码一区人妻 | 2020久久超碰国产精品最新 | 亚洲精品www久久久 | 亚洲精品国偷拍自产在线麻豆 | 欧美日韩视频无码一区二区三 | 好爽又高潮了毛片免费下载 | 少女韩国电视剧在线观看完整 | 扒开双腿疯狂进出爽爽爽视频 | 久久久久免费精品国产 | 国产两女互慰高潮视频在线观看 | 日本va欧美va欧美va精品 | 精品久久8x国产免费观看 | 学生妹亚洲一区二区 | 九月婷婷人人澡人人添人人爽 | 亚洲国精产品一二二线 | 色一情一乱一伦 | 亚洲第一网站男人都懂 | 少妇人妻大乳在线视频 | 中文无码成人免费视频在线观看 | 国产麻豆精品精东影业av网站 | 国产精品99久久精品爆乳 | 在教室伦流澡到高潮hnp视频 | 国产免费久久精品国产传媒 | 成人试看120秒体验区 | 黄网在线观看免费网站 | 国产三级精品三级男人的天堂 | 欧洲精品码一区二区三区免费看 | 国产精品办公室沙发 | aa片在线观看视频在线播放 | 成人无码精品1区2区3区免费看 | 狠狠躁日日躁夜夜躁2020 | 丰满少妇弄高潮了www | 国产成人一区二区三区在线观看 | 亚洲人交乣女bbw | 乱人伦人妻中文字幕无码 | 国产精品无码久久av | 中文字幕无码视频专区 | 亚洲精品美女久久久久久久 | 精品人妻人人做人人爽 | 男女猛烈xx00免费视频试看 | 妺妺窝人体色www婷婷 | 女人被男人爽到呻吟的视频 | 日日噜噜噜噜夜夜爽亚洲精品 | 激情人妻另类人妻伦 | 狠狠色噜噜狠狠狠7777奇米 | 欧美性生交xxxxx久久久 | 亚洲成a人片在线观看无码 | 国产精品久久国产三级国 | 亚洲中文字幕无码中字 | 欧美性猛交xxxx富婆 | 毛片内射-百度 | 日韩少妇内射免费播放 | 女人被男人爽到呻吟的视频 | 亚洲乱亚洲乱妇50p | 日本在线高清不卡免费播放 | 四虎永久在线精品免费网址 | 狠狠色噜噜狠狠狠7777奇米 | 色欲久久久天天天综合网精品 | 性生交片免费无码看人 | 亚洲一区二区三区偷拍女厕 | av人摸人人人澡人人超碰下载 | 国产午夜视频在线观看 | 国产精品手机免费 | 中文字幕乱码中文乱码51精品 | 国产99久久精品一区二区 | 男女猛烈xx00免费视频试看 | 国产真实夫妇视频 | 一区二区三区高清视频一 | 中文毛片无遮挡高清免费 | 六月丁香婷婷色狠狠久久 | 欧美猛少妇色xxxxx | 美女扒开屁股让男人桶 | 久久人人爽人人爽人人片av高清 | 九九综合va免费看 | 国产97人人超碰caoprom | 日本精品少妇一区二区三区 | 精品久久久久久亚洲精品 | 三上悠亚人妻中文字幕在线 | 亚洲欧洲日本综合aⅴ在线 | 福利一区二区三区视频在线观看 | 青草青草久热国产精品 | 久久精品视频在线看15 | av小次郎收藏 | 97夜夜澡人人爽人人喊中国片 | 小sao货水好多真紧h无码视频 | 正在播放老肥熟妇露脸 | 色一情一乱一伦一区二区三欧美 | 亚洲中文字幕在线无码一区二区 | 亚洲国产精品毛片av不卡在线 | 女人被爽到呻吟gif动态图视看 | 伊人久久大香线蕉亚洲 | 麻豆蜜桃av蜜臀av色欲av | 色窝窝无码一区二区三区色欲 | 精品一区二区不卡无码av | 亚洲国产av美女网站 | 国产精品a成v人在线播放 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 麻豆果冻传媒2021精品传媒一区下载 | 色婷婷av一区二区三区之红樱桃 | 久久综合网欧美色妞网 | 精品国产乱码久久久久乱码 | 色一情一乱一伦一区二区三欧美 | 人人妻人人澡人人爽欧美一区 | 国产精品资源一区二区 | 日日麻批免费40分钟无码 | 无码国产激情在线观看 | 2019nv天堂香蕉在线观看 | 乌克兰少妇性做爰 | 丰满人妻翻云覆雨呻吟视频 | 成人亚洲精品久久久久软件 | 人人妻人人澡人人爽欧美一区 | 精品国产av色一区二区深夜久久 | 国语精品一区二区三区 | 熟妇激情内射com | 亚洲日韩一区二区 | 亚洲国产精品成人久久蜜臀 | 国产亚洲精品久久久闺蜜 | 5858s亚洲色大成网站www | 国产又爽又猛又粗的视频a片 | 少妇久久久久久人妻无码 | 日本又色又爽又黄的a片18禁 | 国产精品久久国产三级国 | 一本无码人妻在中文字幕免费 | 国产亚av手机在线观看 | 欧美性猛交内射兽交老熟妇 | 激情五月综合色婷婷一区二区 | 亚洲中文字幕va福利 | 成在人线av无码免费 | 欧洲vodafone精品性 | 欧美性生交活xxxxxdddd | 内射欧美老妇wbb | 精品人妻人人做人人爽夜夜爽 | 日日摸日日碰夜夜爽av | 国产精品久久国产三级国 | 国产suv精品一区二区五 | 300部国产真实乱 | 欧洲熟妇色 欧美 | 国产精品毛片一区二区 | 成人综合网亚洲伊人 | 国产艳妇av在线观看果冻传媒 | 国产人妻久久精品二区三区老狼 | 超碰97人人做人人爱少妇 | 久久综合久久自在自线精品自 | 熟女俱乐部五十路六十路av | 亚洲 激情 小说 另类 欧美 | 无码吃奶揉捏奶头高潮视频 | 亚洲精品久久久久久久久久久 | 人妻天天爽夜夜爽一区二区 | 少妇的肉体aa片免费 | 亚洲国产精华液网站w | 国产电影无码午夜在线播放 | 精品无码av一区二区三区 | 久久久国产精品无码免费专区 | 精品成在人线av无码免费看 | 色窝窝无码一区二区三区色欲 | 久久97精品久久久久久久不卡 | 4hu四虎永久在线观看 | 无码人妻久久一区二区三区不卡 | 亚欧洲精品在线视频免费观看 | 性欧美大战久久久久久久 | 婷婷丁香五月天综合东京热 | 精品无码成人片一区二区98 | 日韩人妻无码一区二区三区久久99 | 99麻豆久久久国产精品免费 | 国产精品无码久久av | 色五月五月丁香亚洲综合网 | 高清不卡一区二区三区 | 国产精品高潮呻吟av久久 | 国产精品美女久久久久av爽李琼 | 日本护士xxxxhd少妇 | 日产精品99久久久久久 | 成人亚洲精品久久久久软件 | 丰满人妻精品国产99aⅴ | 国产精品.xx视频.xxtv | 人妻体内射精一区二区三四 | 亚洲精品中文字幕久久久久 | 国产高清av在线播放 | 激情亚洲一区国产精品 | 人妻夜夜爽天天爽三区 | 亚洲精品久久久久久久久久久 | 在线 国产 欧美 亚洲 天堂 | 亚洲一区二区三区 | 一本色道婷婷久久欧美 | 一二三四社区在线中文视频 | 国产精品久久久久久无码 | 亚洲日本一区二区三区在线 | 又黄又爽又色的视频 | 精品无码成人片一区二区98 | 国产精品久久国产精品99 | 午夜不卡av免费 一本久久a久久精品vr综合 | 爱做久久久久久 | av人摸人人人澡人人超碰下载 | 国产亚洲tv在线观看 | 日韩少妇白浆无码系列 | 老司机亚洲精品影院 | 内射欧美老妇wbb | 乱中年女人伦av三区 | 樱花草在线社区www | 老头边吃奶边弄进去呻吟 | 国产精品国产自线拍免费软件 | 国产亚洲欧美日韩亚洲中文色 | 成人免费视频一区二区 | 亚洲色欲色欲天天天www | 国产内射爽爽大片视频社区在线 | 成人精品一区二区三区中文字幕 | 国产免费无码一区二区视频 | 国产无遮挡吃胸膜奶免费看 | 国产又爽又猛又粗的视频a片 | 高潮毛片无遮挡高清免费 | 性开放的女人aaa片 | 亚洲一区二区三区偷拍女厕 | 人人爽人人爽人人片av亚洲 | 99国产欧美久久久精品 | 精品人人妻人人澡人人爽人人 | 免费国产黄网站在线观看 | 国产精品怡红院永久免费 | 欧美国产日韩久久mv | 国产综合在线观看 | 亚洲精品鲁一鲁一区二区三区 | 76少妇精品导航 | 人人妻人人澡人人爽欧美精品 | 亚洲色在线无码国产精品不卡 | 未满成年国产在线观看 | 久久综合九色综合97网 | 大地资源网第二页免费观看 | 亚洲精品无码人妻无码 | 99久久精品日本一区二区免费 | 亚洲精品午夜无码电影网 | 奇米影视7777久久精品人人爽 | 亚洲 另类 在线 欧美 制服 | 天堂а√在线地址中文在线 | 亚洲天堂2017无码 | 久久久国产精品无码免费专区 | 人妻与老人中文字幕 | 久久天天躁夜夜躁狠狠 | 亚洲aⅴ无码成人网站国产app | aa片在线观看视频在线播放 | 老子影院午夜伦不卡 | 天天拍夜夜添久久精品大 | 99精品视频在线观看免费 | 夜精品a片一区二区三区无码白浆 | 亚洲中文字幕成人无码 | www国产亚洲精品久久久日本 | 成在人线av无码免费 | 内射巨臀欧美在线视频 | 男女下面进入的视频免费午夜 | 少妇性l交大片欧洲热妇乱xxx | 亚洲国产综合无码一区 | 国产色xx群视频射精 | 一二三四社区在线中文视频 | 国产无遮挡吃胸膜奶免费看 | 亚洲国产成人av在线观看 | 国产亚洲视频中文字幕97精品 | 成人免费视频一区二区 | 国产精品无码mv在线观看 | 久久午夜无码鲁丝片午夜精品 | 亚洲欧美国产精品专区久久 | 亚洲日韩中文字幕在线播放 | 日韩人妻无码中文字幕视频 | 国产成人无码区免费内射一片色欲 | 高清无码午夜福利视频 | 国产偷国产偷精品高清尤物 | 牲交欧美兽交欧美 | 亚洲综合另类小说色区 | 久久久精品成人免费观看 | 欧美阿v高清资源不卡在线播放 | 亚洲欧洲中文日韩av乱码 | 久久精品丝袜高跟鞋 | 欧美三级不卡在线观看 | 久久久中文字幕日本无吗 | 欧美精品在线观看 | 十八禁真人啪啪免费网站 | 国产精品久久久久久亚洲影视内衣 | 性欧美熟妇videofreesex | 久久久久成人片免费观看蜜芽 | 国产精品无码mv在线观看 | 国产后入清纯学生妹 | 一本久久a久久精品vr综合 | 久久精品国产大片免费观看 | 亚洲国产日韩a在线播放 | 十八禁视频网站在线观看 | 久久天天躁狠狠躁夜夜免费观看 | 97久久精品无码一区二区 | 亚洲精品久久久久久一区二区 | 亚洲欧美国产精品专区久久 | 性欧美熟妇videofreesex | 中文字幕乱码人妻二区三区 | 精品亚洲韩国一区二区三区 | 精品无码成人片一区二区98 | 欧美日韩一区二区三区自拍 | 久久99精品久久久久久动态图 | 国产又爽又猛又粗的视频a片 | 亚洲 另类 在线 欧美 制服 | 精品人人妻人人澡人人爽人人 | 国产香蕉尹人视频在线 | 国产尤物精品视频 | 黄网在线观看免费网站 | 久久 国产 尿 小便 嘘嘘 | 欧美日韩一区二区免费视频 | 欧美日韩色另类综合 | 亚洲の无码国产の无码步美 | 久久综合色之久久综合 | 成人一在线视频日韩国产 | 一个人看的视频www在线 | 捆绑白丝粉色jk震动捧喷白浆 | 日韩欧美中文字幕在线三区 | 少妇性l交大片欧洲热妇乱xxx | 少妇太爽了在线观看 | 精品久久久久香蕉网 | 亚洲 a v无 码免 费 成 人 a v | 天天躁日日躁狠狠躁免费麻豆 | 国产九九九九九九九a片 | 成人免费视频视频在线观看 免费 | 久久午夜无码鲁丝片 | 1000部夫妻午夜免费 | 西西人体www44rt大胆高清 | 无码帝国www无码专区色综合 | 欧美日韩人成综合在线播放 | 国产高清不卡无码视频 | 中文字幕无码乱人伦 | 亚洲自偷自拍另类第1页 | 欧美人与禽猛交狂配 | 疯狂三人交性欧美 | 精品久久久无码人妻字幂 | 国产黄在线观看免费观看不卡 | 欧美日本免费一区二区三区 | 国产农村乱对白刺激视频 | 熟妇激情内射com | 亚洲欧美日韩国产精品一区二区 | 天堂在线观看www | 国产精品久久福利网站 | 国产精品久久久久久久9999 | 久久久婷婷五月亚洲97号色 | 国产乡下妇女做爰 | 精品欧洲av无码一区二区三区 | 久久精品人妻少妇一区二区三区 | 内射白嫩少妇超碰 | 装睡被陌生人摸出水好爽 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 欧美真人作爱免费视频 | 自拍偷自拍亚洲精品被多人伦好爽 | 98国产精品综合一区二区三区 | 精品国产aⅴ无码一区二区 | 少妇无码一区二区二三区 | 国产色精品久久人妻 | 双乳奶水饱满少妇呻吟 | 国产午夜福利100集发布 | 好男人社区资源 | 国产在线精品一区二区高清不卡 | 精品乱码久久久久久久 | 亚洲欧美国产精品专区久久 | 99久久精品日本一区二区免费 | 一区二区传媒有限公司 | 一本久道久久综合婷婷五月 | 久久久久久国产精品无码下载 | 永久黄网站色视频免费直播 | 国产成人无码区免费内射一片色欲 | 成人精品一区二区三区中文字幕 | 无码人妻精品一区二区三区不卡 | 婷婷丁香六月激情综合啪 | 亚洲高清偷拍一区二区三区 | 一本加勒比波多野结衣 | 久久久中文字幕日本无吗 | 男人的天堂av网站 | 少妇一晚三次一区二区三区 | 久久久久久九九精品久 | 少妇性l交大片 | 国色天香社区在线视频 | 亚洲国产av美女网站 | 色综合天天综合狠狠爱 | 一本加勒比波多野结衣 | 乱人伦人妻中文字幕无码 | 国产精品丝袜黑色高跟鞋 | 国产色在线 | 国产 | 波多野结衣高清一区二区三区 | 精品国产精品久久一区免费式 | 少女韩国电视剧在线观看完整 | 久久天天躁狠狠躁夜夜免费观看 | 国产高清av在线播放 | 国语精品一区二区三区 | 欧美日韩视频无码一区二区三 | 国内精品九九久久久精品 | 国语自产偷拍精品视频偷 | 无码人妻丰满熟妇区五十路百度 | 亚洲日韩av一区二区三区中文 | 亚洲精品一区国产 | 亚洲熟妇自偷自拍另类 | 中文字幕无线码免费人妻 | 婷婷五月综合缴情在线视频 | 亚洲大尺度无码无码专区 | 欧美35页视频在线观看 | 精品偷拍一区二区三区在线看 | 好屌草这里只有精品 | 鲁大师影院在线观看 | 久久精品国产99精品亚洲 | www成人国产高清内射 | 欧美人与物videos另类 | 天天摸天天碰天天添 | 久久久国产精品无码免费专区 | 无码国内精品人妻少妇 | 在线成人www免费观看视频 | 国产成人无码av一区二区 | 国产精品免费大片 | 18禁止看的免费污网站 | 熟女少妇人妻中文字幕 | 性欧美大战久久久久久久 | 伊人久久大香线蕉午夜 | 伊人久久婷婷五月综合97色 | 成熟妇人a片免费看网站 | aa片在线观看视频在线播放 | 国产熟妇另类久久久久 | 精品无码av一区二区三区 | 国产性生交xxxxx无码 | 日韩av无码一区二区三区 | 亚洲国产一区二区三区在线观看 | 欧美精品无码一区二区三区 | 中国大陆精品视频xxxx | 亚洲精品久久久久中文第一幕 | 欧美人妻一区二区三区 | 日本精品少妇一区二区三区 | 国产综合久久久久鬼色 | 日本va欧美va欧美va精品 | 亚洲国产综合无码一区 | 最新国产乱人伦偷精品免费网站 | 国产舌乚八伦偷品w中 | 狠狠色噜噜狠狠狠狠7777米奇 | 国产乱人无码伦av在线a | 午夜熟女插插xx免费视频 | 久久99精品久久久久久动态图 | 黑森林福利视频导航 | 欧美激情内射喷水高潮 | 亚洲va中文字幕无码久久不卡 | 窝窝午夜理论片影院 | 国内精品久久毛片一区二区 | 亚洲欧洲日本无在线码 | 国产av剧情md精品麻豆 | 亚洲一区二区三区偷拍女厕 | 日本乱偷人妻中文字幕 | 无码av中文字幕免费放 | 婷婷五月综合缴情在线视频 | 亚洲国产av精品一区二区蜜芽 | 福利一区二区三区视频在线观看 | 无码人妻久久一区二区三区不卡 | 老太婆性杂交欧美肥老太 | 无套内射视频囯产 | 亚洲精品一区国产 | 亚洲色大成网站www国产 | 成年美女黄网站色大免费全看 | 伊在人天堂亚洲香蕉精品区 | 日本精品人妻无码免费大全 | 中文字幕日产无线码一区 | 午夜福利电影 | 99久久精品午夜一区二区 | 久久久久久九九精品久 | 水蜜桃亚洲一二三四在线 | 鲁大师影院在线观看 | 日本www一道久久久免费榴莲 | 国产激情无码一区二区app | 丝袜人妻一区二区三区 | 亚洲 欧美 激情 小说 另类 | 国产97人人超碰caoprom | 亚洲精品无码国产 | 亚洲国产精品无码一区二区三区 | 亚洲精品一区二区三区婷婷月 | 亚洲gv猛男gv无码男同 | 亚洲日韩一区二区三区 | 国产精品丝袜黑色高跟鞋 | 亚洲成av人在线观看网址 | av无码久久久久不卡免费网站 | 久久国内精品自在自线 | 午夜丰满少妇性开放视频 | 丰满人妻翻云覆雨呻吟视频 | 欧美成人高清在线播放 | 久久久久av无码免费网 | 好屌草这里只有精品 | 日韩精品乱码av一区二区 | 成人无码精品1区2区3区免费看 | 98国产精品综合一区二区三区 | 久久精品国产99精品亚洲 | 成人一在线视频日韩国产 | av无码久久久久不卡免费网站 | 国产精品人人妻人人爽 | 成人无码精品一区二区三区 | 成人无码精品一区二区三区 | 亚洲精品鲁一鲁一区二区三区 | 中文字幕色婷婷在线视频 | √天堂资源地址中文在线 | 久久久久国色av免费观看性色 | 中文字幕无线码 | 人妻少妇精品久久 | 亚洲精品综合五月久久小说 | 久久久久亚洲精品中文字幕 | a片免费视频在线观看 | 日韩人妻少妇一区二区三区 | 亚洲国产精品无码久久久久高潮 | 综合人妻久久一区二区精品 | 亚洲男人av天堂午夜在 | 综合激情五月综合激情五月激情1 | 麻花豆传媒剧国产免费mv在线 | 极品嫩模高潮叫床 | 成 人 网 站国产免费观看 | 色五月丁香五月综合五月 | 欧美黑人巨大xxxxx | 亚洲综合无码一区二区三区 | 久久久久成人精品免费播放动漫 | 老熟女乱子伦 | 日韩欧美中文字幕在线三区 | 亚洲欧美综合区丁香五月小说 | 成熟妇人a片免费看网站 | 亚洲另类伦春色综合小说 | 国产性生交xxxxx无码 | 久久精品99久久香蕉国产色戒 | 99视频精品全部免费免费观看 | 欧美高清在线精品一区 | 国产乱子伦视频在线播放 | 中国大陆精品视频xxxx | 亚洲综合伊人久久大杳蕉 | 麻豆md0077饥渴少妇 | 亚洲小说春色综合另类 | 午夜精品久久久久久久 | 亚洲精品久久久久久久久久久 | 亚洲精品国产精品乱码不卡 | 亚洲精品国偷拍自产在线麻豆 | 少妇被黑人到高潮喷出白浆 | 国产熟妇另类久久久久 | 在线精品亚洲一区二区 | 国内精品人妻无码久久久影院 | 亚洲精品www久久久 | 欧美国产日产一区二区 | 欧美丰满熟妇xxxx | 在教室伦流澡到高潮hnp视频 | 无码精品国产va在线观看dvd | 欧洲极品少妇 | 亚洲色大成网站www国产 | 99riav国产精品视频 | 国产人妻精品一区二区三区不卡 | 国产真实夫妇视频 | 中文无码成人免费视频在线观看 | 亚洲精品久久久久久久久久久 | 国产绳艺sm调教室论坛 | 免费观看激色视频网站 | 国产又爽又猛又粗的视频a片 | 国产亚洲精品久久久久久国模美 | 国产乱人偷精品人妻a片 | 日韩亚洲欧美精品综合 | 色狠狠av一区二区三区 | 欧美日韩综合一区二区三区 | 国产人妻人伦精品1国产丝袜 | 4hu四虎永久在线观看 | 7777奇米四色成人眼影 | 久久精品国产精品国产精品污 | 成人aaa片一区国产精品 | 亚洲精品国产第一综合99久久 | 蜜臀av无码人妻精品 | 国产成人一区二区三区在线观看 | 免费无码一区二区三区蜜桃大 | 亚洲欧美日韩成人高清在线一区 | 亚洲色偷偷偷综合网 | 四虎国产精品一区二区 | 无码帝国www无码专区色综合 | 中文字幕无码视频专区 | 久久伊人色av天堂九九小黄鸭 | 狠狠色噜噜狠狠狠7777奇米 | 久久午夜夜伦鲁鲁片无码免费 | 无码人妻久久一区二区三区不卡 | 麻豆果冻传媒2021精品传媒一区下载 | 一本久道高清无码视频 | 人人爽人人澡人人人妻 | 人妻互换免费中文字幕 | 少妇高潮喷潮久久久影院 | 国精产品一品二品国精品69xx | 久久精品国产大片免费观看 | 亚洲国产欧美在线成人 | 麻豆md0077饥渴少妇 | 精品国产一区二区三区四区 | 人妻少妇被猛烈进入中文字幕 | 无码国产乱人伦偷精品视频 | 成人精品视频一区二区三区尤物 | 日本高清一区免费中文视频 | 国产精品久久久久久久影院 | 小泽玛莉亚一区二区视频在线 | 鲁一鲁av2019在线 | 久久 国产 尿 小便 嘘嘘 | 国产做国产爱免费视频 | 亚拍精品一区二区三区探花 | 国产在热线精品视频 | 性色欲网站人妻丰满中文久久不卡 | 国产成人无码av在线影院 | 国产精品内射视频免费 | 东京热一精品无码av | 国产免费久久久久久无码 | 十八禁视频网站在线观看 | 55夜色66夜色国产精品视频 | 亚洲欧美日韩综合久久久 | 亚洲国产精品毛片av不卡在线 | 欧美丰满少妇xxxx性 | 色情久久久av熟女人妻网站 | 久久99精品国产麻豆蜜芽 | yw尤物av无码国产在线观看 | 久久久久成人片免费观看蜜芽 | 久久亚洲精品中文字幕无男同 | 一本久道久久综合婷婷五月 | 亚洲欧洲日本综合aⅴ在线 | 在线观看欧美一区二区三区 | 人妻少妇精品无码专区二区 | 精品日本一区二区三区在线观看 | 97夜夜澡人人爽人人喊中国片 | 日韩在线不卡免费视频一区 | 最新国产乱人伦偷精品免费网站 | 午夜理论片yy44880影院 | 国产人妖乱国产精品人妖 | 国产艳妇av在线观看果冻传媒 | 夜夜高潮次次欢爽av女 | 久久精品女人的天堂av | 小sao货水好多真紧h无码视频 | 中文字幕无码热在线视频 | 国产69精品久久久久app下载 | 99精品视频在线观看免费 | 久久伊人色av天堂九九小黄鸭 | 中文无码伦av中文字幕 | 亚洲综合伊人久久大杳蕉 | 成人亚洲精品久久久久 | 国产精品无码久久av | 国产午夜无码精品免费看 | 国产精品成人av在线观看 | 欧美性生交活xxxxxdddd | 国产亚洲美女精品久久久2020 | 精品成在人线av无码免费看 | 最近的中文字幕在线看视频 | 丰满岳乱妇在线观看中字无码 | 欧美日本免费一区二区三区 | 国产精品香蕉在线观看 | 超碰97人人射妻 | 久久国语露脸国产精品电影 | 狠狠色噜噜狠狠狠7777奇米 | 亚洲大尺度无码无码专区 | 久久国产36精品色熟妇 | 亚洲中文字幕在线无码一区二区 | 又湿又紧又大又爽a视频国产 | 中文字幕+乱码+中文字幕一区 | 国产精品高潮呻吟av久久 | 伊人久久大香线焦av综合影院 | 呦交小u女精品视频 | 色综合久久中文娱乐网 | 无码人妻丰满熟妇区五十路百度 | 国产做国产爱免费视频 | 色婷婷综合中文久久一本 | 亚洲色偷偷男人的天堂 | 色综合久久久无码中文字幕 | 特大黑人娇小亚洲女 | 国产黑色丝袜在线播放 | 精品国产国产综合精品 | 国产精品亚洲а∨无码播放麻豆 | 成人无码影片精品久久久 | 国产肉丝袜在线观看 | 青草视频在线播放 | 色一情一乱一伦 | 无码纯肉视频在线观看 | 国产 浪潮av性色四虎 | 国产亲子乱弄免费视频 | 黑人玩弄人妻中文在线 | 曰韩无码二三区中文字幕 | 少妇久久久久久人妻无码 | 无码乱肉视频免费大全合集 | 好爽又高潮了毛片免费下载 | 台湾无码一区二区 | 午夜成人1000部免费视频 | 亚洲热妇无码av在线播放 | 精品人妻人人做人人爽夜夜爽 | 精品人妻人人做人人爽 | 欧美人妻一区二区三区 | 国产精品亚洲lv粉色 | 亚洲人成影院在线无码按摩店 | 国产在线精品一区二区三区直播 | 国产性生交xxxxx无码 | 日韩精品成人一区二区三区 | 色一情一乱一伦一区二区三欧美 | 国产色精品久久人妻 | 牲欲强的熟妇农村老妇女 | √8天堂资源地址中文在线 | 99视频精品全部免费免费观看 | www成人国产高清内射 | 亚洲の无码国产の无码影院 | 精品国产一区二区三区四区 | 清纯唯美经典一区二区 | 欧美人与物videos另类 | 青草青草久热国产精品 | 中文字幕乱码人妻无码久久 | 一个人看的www免费视频在线观看 | 精品久久久久久亚洲精品 | 国产国产精品人在线视 | 无码av免费一区二区三区试看 | 亚洲精品国产第一综合99久久 | 日韩精品无码一区二区中文字幕 | 巨爆乳无码视频在线观看 | 丰满少妇熟乱xxxxx视频 | 免费观看黄网站 | 熟妇激情内射com | 色综合久久久无码网中文 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 亚洲日韩精品欧美一区二区 | 少妇被黑人到高潮喷出白浆 | 国产亚洲精品精品国产亚洲综合 | 影音先锋中文字幕无码 | 99久久久无码国产精品免费 | 丰满少妇弄高潮了www | 国产成人精品必看 | 国产成人精品视频ⅴa片软件竹菊 | 男女爱爱好爽视频免费看 | 中文久久乱码一区二区 | 亚洲一区二区三区四区 | 人人妻人人澡人人爽人人精品浪潮 | 久久zyz资源站无码中文动漫 | 男人的天堂av网站 | 免费播放一区二区三区 | 亚洲综合色区中文字幕 | 久久久久久久久蜜桃 | 国产电影无码午夜在线播放 | 亚洲一区二区三区含羞草 | 综合激情五月综合激情五月激情1 | 精品国偷自产在线 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 色妞www精品免费视频 | 国产人妻人伦精品1国产丝袜 | 国内精品九九久久久精品 | 玩弄人妻少妇500系列视频 | 色综合天天综合狠狠爱 | 一个人看的视频www在线 | 亚洲精品国产精品乱码视色 | 日韩av无码一区二区三区不卡 | 精品国偷自产在线 | 97色伦图片97综合影院 | 婷婷丁香五月天综合东京热 | 精品国产青草久久久久福利 | 国内丰满熟女出轨videos | 18禁黄网站男男禁片免费观看 | 97久久国产亚洲精品超碰热 | 国产手机在线αⅴ片无码观看 | 国精产品一品二品国精品69xx | 国产激情无码一区二区 | 强开小婷嫩苞又嫩又紧视频 | 天堂无码人妻精品一区二区三区 | 成年女人永久免费看片 | 欧美一区二区三区视频在线观看 | 亚洲欧美精品aaaaaa片 | 正在播放老肥熟妇露脸 | 久久久久成人片免费观看蜜芽 | 中文字幕无码日韩欧毛 | 动漫av一区二区在线观看 | 日韩精品无码一本二本三本色 | 粉嫩少妇内射浓精videos | 国产另类ts人妖一区二区 | 无码国产乱人伦偷精品视频 | 日韩精品无码免费一区二区三区 | www成人国产高清内射 | 久久综合九色综合欧美狠狠 | 欧美自拍另类欧美综合图片区 | 一本色道婷婷久久欧美 | 在线播放免费人成毛片乱码 | 久久精品无码一区二区三区 | 久久精品一区二区三区四区 | 全黄性性激高免费视频 | 丰满人妻精品国产99aⅴ | 曰韩少妇内射免费播放 | 亚洲精品一区二区三区大桥未久 | 天天摸天天透天天添 | av人摸人人人澡人人超碰下载 | 国产片av国语在线观看 | 丰满诱人的人妻3 | 东京一本一道一二三区 | 久久天天躁狠狠躁夜夜免费观看 | 国产亚洲精品久久久久久 | 人妻中文无码久热丝袜 | 亚洲国产精品一区二区美利坚 | 人妻有码中文字幕在线 | 精品国产aⅴ无码一区二区 | 国产精品无码一区二区桃花视频 | 97资源共享在线视频 | 最新国产麻豆aⅴ精品无码 | 久久这里只有精品视频9 | 亚洲欧洲无卡二区视頻 | 波多野结衣av一区二区全免费观看 | 久久久久久久人妻无码中文字幕爆 | 粉嫩少妇内射浓精videos | 无码一区二区三区在线 | 少妇性荡欲午夜性开放视频剧场 | 国产成人精品优优av | 九九综合va免费看 | 成人一在线视频日韩国产 | 亚洲色成人中文字幕网站 | 成人性做爰aaa片免费看 | 成人精品天堂一区二区三区 | 国产黄在线观看免费观看不卡 | 国产精品18久久久久久麻辣 | 午夜时刻免费入口 | 久久综合香蕉国产蜜臀av | 无码一区二区三区在线观看 | 免费播放一区二区三区 | 欧美亚洲日韩国产人成在线播放 | 国产美女精品一区二区三区 | 国产激情无码一区二区app | 亚洲成a人片在线观看无码 | 少妇邻居内射在线 | 午夜精品久久久内射近拍高清 | 国产精品久久久久久亚洲影视内衣 | 日欧一片内射va在线影院 | 天堂а√在线地址中文在线 | 亚洲无人区午夜福利码高清完整版 | аⅴ资源天堂资源库在线 | 亚洲国产欧美日韩精品一区二区三区 | 激情综合激情五月俺也去 | 午夜精品一区二区三区的区别 | 大色综合色综合网站 | 一本色道婷婷久久欧美 | 日本又色又爽又黄的a片18禁 | 国内精品人妻无码久久久影院蜜桃 | 丁香啪啪综合成人亚洲 | 色 综合 欧美 亚洲 国产 | 成人精品视频一区二区三区尤物 | 国产成人综合美国十次 | 免费中文字幕日韩欧美 | 久久99久久99精品中文字幕 | 成人精品天堂一区二区三区 | 无码人妻精品一区二区三区下载 | 香港三级日本三级妇三级 | 国产精品久久久久久亚洲毛片 | 人妻尝试又大又粗久久 | 亚洲乱码国产乱码精品精 | 亚洲第一网站男人都懂 | 国产又爽又黄又刺激的视频 | 亚洲男人av香蕉爽爽爽爽 | 国产av一区二区三区最新精品 | 亚欧洲精品在线视频免费观看 | 扒开双腿吃奶呻吟做受视频 | 久久久中文字幕日本无吗 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国内揄拍国内精品人妻 | 国产美女极度色诱视频www | 无码人妻久久一区二区三区不卡 | 学生妹亚洲一区二区 | 永久免费观看美女裸体的网站 | 亚洲色在线无码国产精品不卡 | 色欲综合久久中文字幕网 | 亚洲日韩一区二区 | 中文字幕无码热在线视频 | 欧美放荡的少妇 | 亚洲精品国偷拍自产在线麻豆 | a片免费视频在线观看 | 熟妇女人妻丰满少妇中文字幕 | 亚洲精品国产第一综合99久久 | 国产一区二区三区日韩精品 | 网友自拍区视频精品 | 日韩精品无码免费一区二区三区 | 国产亚洲视频中文字幕97精品 | 99精品无人区乱码1区2区3区 | 亚洲国产av精品一区二区蜜芽 | 久久www免费人成人片 | 老熟妇乱子伦牲交视频 | 日韩精品无码一区二区中文字幕 | 国产精品高潮呻吟av久久 | 精品 日韩 国产 欧美 视频 | 亚洲精品一区二区三区婷婷月 | 国产精品成人av在线观看 | 日本爽爽爽爽爽爽在线观看免 | 国产成人精品三级麻豆 | 狠狠cao日日穞夜夜穞av | 久久精品中文字幕一区 | 强奷人妻日本中文字幕 | 欧美日韩视频无码一区二区三 | 久久国产精品精品国产色婷婷 | 国产综合久久久久鬼色 | 男女下面进入的视频免费午夜 | 极品嫩模高潮叫床 | 清纯唯美经典一区二区 | 一本久久伊人热热精品中文字幕 | 亚洲国产精品无码一区二区三区 | 精品成在人线av无码免费看 | 少妇一晚三次一区二区三区 | 又大又硬又爽免费视频 | 熟女俱乐部五十路六十路av | 日韩少妇内射免费播放 | 久久久久亚洲精品男人的天堂 | 免费观看黄网站 | 亚洲中文字幕无码中文字在线 | 十八禁真人啪啪免费网站 | 婷婷六月久久综合丁香 | 免费无码一区二区三区蜜桃大 | 18禁止看的免费污网站 | 亚洲无人区一区二区三区 | 久久精品国产99精品亚洲 | 日本乱偷人妻中文字幕 | 特黄特色大片免费播放器图片 | 亚洲欧美日韩成人高清在线一区 | 欧洲美熟女乱又伦 | 99久久精品国产一区二区蜜芽 | 人人妻人人澡人人爽人人精品 | 亚洲国产一区二区三区在线观看 | 国产无套内射久久久国产 | 日日摸天天摸爽爽狠狠97 | 自拍偷自拍亚洲精品10p | 亚洲人成人无码网www国产 | 国产精品香蕉在线观看 | 夫妻免费无码v看片 | 亚洲日韩中文字幕在线播放 | 亚洲乱码国产乱码精品精 | 97人妻精品一区二区三区 | 免费国产成人高清在线观看网站 | 在线天堂新版最新版在线8 | 日本一卡2卡3卡四卡精品网站 | 亚洲男人av天堂午夜在 | 色五月五月丁香亚洲综合网 | 亚洲日韩av一区二区三区中文 | 性色欲情网站iwww九文堂 | 日本丰满熟妇videos | 无码福利日韩神码福利片 | 精品无码国产自产拍在线观看蜜 | 日韩在线不卡免费视频一区 | 亚洲综合另类小说色区 | 亚洲精品一区二区三区在线观看 | 在教室伦流澡到高潮hnp视频 | 在线观看国产一区二区三区 | 欧美激情一区二区三区成人 | 国产av无码专区亚洲awww | 丰满人妻翻云覆雨呻吟视频 | 日韩无套无码精品 | 男女超爽视频免费播放 | 日本熟妇人妻xxxxx人hd | 色欲综合久久中文字幕网 | 国产精品久久久久久亚洲影视内衣 | 男女超爽视频免费播放 | 欧美刺激性大交 | 国产三级精品三级男人的天堂 | 亚洲乱亚洲乱妇50p | 日本饥渴人妻欲求不满 | 亚洲乱码国产乱码精品精 | 在线精品国产一区二区三区 | 久久精品丝袜高跟鞋 | 亚洲aⅴ无码成人网站国产app | 精品国产一区二区三区av 性色 | 国产熟妇高潮叫床视频播放 | 亚洲va中文字幕无码久久不卡 | 国产精品亚洲五月天高清 | 国产成人无码a区在线观看视频app | 国产内射爽爽大片视频社区在线 | 国产精品va在线播放 | 亚洲精品综合五月久久小说 | 内射白嫩少妇超碰 | 亚洲国产精品久久久天堂 | 亚洲中文字幕无码中字 | 少妇被粗大的猛进出69影院 | 国产无遮挡又黄又爽又色 | 欧美三级不卡在线观看 | 青青草原综合久久大伊人精品 | 久久伊人色av天堂九九小黄鸭 | 亚洲色在线无码国产精品不卡 | 成人精品视频一区二区三区尤物 | av无码久久久久不卡免费网站 | 午夜男女很黄的视频 | 国产激情综合五月久久 | 亚洲精品欧美二区三区中文字幕 | 久久午夜无码鲁丝片秋霞 | 夜夜夜高潮夜夜爽夜夜爰爰 | 日本一区二区更新不卡 | 久久久精品成人免费观看 | 国产婷婷色一区二区三区在线 | 国产成人人人97超碰超爽8 | 扒开双腿吃奶呻吟做受视频 | 99视频精品全部免费免费观看 | 蜜臀av在线播放 久久综合激激的五月天 | 人妻少妇被猛烈进入中文字幕 | 男女超爽视频免费播放 | 在线播放亚洲第一字幕 | 日韩人妻无码中文字幕视频 | 国产精品第一区揄拍无码 | 国产欧美精品一区二区三区 | а√资源新版在线天堂 | 国产亚洲精品久久久闺蜜 | 国产疯狂伦交大片 | 日韩av无码中文无码电影 | 国产在线精品一区二区高清不卡 | 67194成是人免费无码 | 欧美日韩一区二区免费视频 | 日韩视频 中文字幕 视频一区 | 一二三四在线观看免费视频 | 亚洲精品国产精品乱码不卡 | 亚洲码国产精品高潮在线 | 日本精品久久久久中文字幕 | 一本久道久久综合婷婷五月 | 最新国产麻豆aⅴ精品无码 | 欧美国产日韩亚洲中文 | 欧美 丝袜 自拍 制服 另类 | 国产成人午夜福利在线播放 | 无码国产乱人伦偷精品视频 | 国产精品自产拍在线观看 | 欧美日韩亚洲国产精品 | 无码av免费一区二区三区试看 | 国产两女互慰高潮视频在线观看 | 人妻插b视频一区二区三区 | 激情亚洲一区国产精品 | 曰韩无码二三区中文字幕 | 精品国精品国产自在久国产87 | 国产一区二区三区影院 | 久久亚洲精品中文字幕无男同 | 成人动漫在线观看 | 一区二区三区乱码在线 | 欧洲 | 中文精品久久久久人妻不卡 | 色诱久久久久综合网ywww | 成人性做爰aaa片免费看不忠 | 伊人久久婷婷五月综合97色 | 人妻无码久久精品人妻 | 欧美人与禽zoz0性伦交 | 免费人成在线观看网站 | 亚洲午夜久久久影院 | www国产亚洲精品久久网站 | 日本一区二区三区免费播放 | 中文字幕 亚洲精品 第1页 | 乱中年女人伦av三区 | 亚洲人成影院在线无码按摩店 | 国产精品久久精品三级 | 蜜臀av无码人妻精品 | 亚洲中文字幕在线无码一区二区 | 国产精品对白交换视频 | 中文字幕 人妻熟女 | 九一九色国产 | 人妻无码αv中文字幕久久琪琪布 | 免费人成在线视频无码 | 国语自产偷拍精品视频偷 | 伦伦影院午夜理论片 | 国产精品亚洲综合色区韩国 | 亚洲精品成人av在线 | 久久精品成人欧美大片 | 中国女人内谢69xxxx | 男人扒开女人内裤强吻桶进去 | 人妻少妇精品无码专区动漫 | 日产国产精品亚洲系列 | 76少妇精品导航 | 亚洲精品久久久久avwww潮水 | 午夜精品一区二区三区在线观看 | 5858s亚洲色大成网站www | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产成人无码a区在线观看视频app | 55夜色66夜色国产精品视频 | 领导边摸边吃奶边做爽在线观看 | 兔费看少妇性l交大片免费 | 亚洲日韩精品欧美一区二区 | 人妻无码αv中文字幕久久琪琪布 | 免费男性肉肉影院 | 青春草在线视频免费观看 | 亚洲中文字幕av在天堂 | 天天av天天av天天透 | 丝袜美腿亚洲一区二区 | 久久 国产 尿 小便 嘘嘘 | 激情爆乳一区二区三区 | 大乳丰满人妻中文字幕日本 | 福利一区二区三区视频在线观看 | 两性色午夜视频免费播放 | 最新国产麻豆aⅴ精品无码 | 国产av人人夜夜澡人人爽麻豆 | 欧美三级a做爰在线观看 | 日韩亚洲欧美精品综合 | 国产午夜视频在线观看 | 国产精品人人妻人人爽 | 国产精品第一国产精品 | 中文字幕无码av波多野吉衣 | 国产亚洲精品久久久久久大师 | 久久午夜无码鲁丝片午夜精品 | 一区二区传媒有限公司 | 精品久久久久久人妻无码中文字幕 | 国产成人综合美国十次 | 精品厕所偷拍各类美女tp嘘嘘 | 少妇无码一区二区二三区 | 丝袜 中出 制服 人妻 美腿 | 午夜精品久久久内射近拍高清 | 成人av无码一区二区三区 | 国产色精品久久人妻 | 国产精品久久久午夜夜伦鲁鲁 | 国产又爽又黄又刺激的视频 | 亚洲国产午夜精品理论片 | 国产在线一区二区三区四区五区 | 午夜精品一区二区三区在线观看 | 国内精品人妻无码久久久影院蜜桃 | 中文无码成人免费视频在线观看 | 久久天天躁狠狠躁夜夜免费观看 | 日韩人妻少妇一区二区三区 | 2020久久超碰国产精品最新 | 人人妻在人人 | 少女韩国电视剧在线观看完整 | 97人妻精品一区二区三区 | www国产亚洲精品久久网站 | 国产麻豆精品一区二区三区v视界 | 色综合久久中文娱乐网 | 亚洲色www成人永久网址 | 强辱丰满人妻hd中文字幕 | 99久久精品国产一区二区蜜芽 | 国产精品嫩草久久久久 | 九九在线中文字幕无码 | 国产av一区二区三区最新精品 | 国产精品久久久午夜夜伦鲁鲁 | 又黄又爽又色的视频 | 免费人成网站视频在线观看 | 亚洲日韩av一区二区三区四区 | 成人精品天堂一区二区三区 | 2019午夜福利不卡片在线 | 国产亚洲美女精品久久久2020 | 爆乳一区二区三区无码 | 免费观看的无遮挡av | 天下第一社区视频www日本 | 亚洲国产欧美在线成人 | av在线亚洲欧洲日产一区二区 | 国产精品18久久久久久麻辣 | 亚洲欧美日韩成人高清在线一区 | 亚洲成熟女人毛毛耸耸多 | 欧美猛少妇色xxxxx | 久久亚洲日韩精品一区二区三区 | 免费国产黄网站在线观看 | 国产成人久久精品流白浆 | 黑人大群体交免费视频 | 久久久久99精品成人片 | 中文字幕亚洲情99在线 | 波多野结衣av在线观看 | 天天拍夜夜添久久精品 | 无码人妻av免费一区二区三区 | 久久 国产 尿 小便 嘘嘘 | 国产成人一区二区三区别 | 荫蒂被男人添的好舒服爽免费视频 | а√天堂www在线天堂小说 | 天天摸天天透天天添 | 成人性做爰aaa片免费看不忠 | 亚洲欧美综合区丁香五月小说 | 国产午夜亚洲精品不卡 | 久久熟妇人妻午夜寂寞影院 | 黑人大群体交免费视频 | 国产绳艺sm调教室论坛 | av人摸人人人澡人人超碰下载 | 免费观看的无遮挡av | 成人性做爰aaa片免费看 | 丰满少妇弄高潮了www | 国产精品香蕉在线观看 | 婷婷六月久久综合丁香 | 白嫩日本少妇做爰 | 欧美国产亚洲日韩在线二区 | 国产9 9在线 | 中文 | 蜜臀av无码人妻精品 | 国产精品人人妻人人爽 | 99久久人妻精品免费二区 | 日韩成人一区二区三区在线观看 | 午夜精品久久久久久久久 | 人妻插b视频一区二区三区 | 亚洲欧美精品aaaaaa片 | 无套内谢的新婚少妇国语播放 | 人妻插b视频一区二区三区 | 黑人大群体交免费视频 | 欧美日韩亚洲国产精品 | 97夜夜澡人人爽人人喊中国片 | 亚洲国产av精品一区二区蜜芽 | 亚洲の无码国产の无码影院 | 国产乱人伦av在线无码 | 免费乱码人妻系列无码专区 | 精品久久综合1区2区3区激情 | 麻豆国产丝袜白领秘书在线观看 | 国产成人久久精品流白浆 | 中文字幕精品av一区二区五区 | 中文无码成人免费视频在线观看 | 亚洲中文字幕在线无码一区二区 | 全球成人中文在线 | 波多野结衣一区二区三区av免费 | 久久综合色之久久综合 | 欧美 亚洲 国产 另类 | 欧美丰满熟妇xxxx性ppx人交 | 国产亚洲精品久久久闺蜜 | 久久精品女人的天堂av | aa片在线观看视频在线播放 | 内射白嫩少妇超碰 | 亚洲欧美中文字幕5发布 | 狂野欧美性猛交免费视频 | 日日摸天天摸爽爽狠狠97 | 无码人妻精品一区二区三区下载 | 久久无码人妻影院 | 免费看少妇作爱视频 | 精品久久久无码人妻字幂 | 久久综合网欧美色妞网 | 亚洲综合色区中文字幕 | 久久午夜无码鲁丝片午夜精品 | 妺妺窝人体色www婷婷 | 亚洲a无码综合a国产av中文 | 精品偷自拍另类在线观看 | 蜜桃视频插满18在线观看 | 97久久精品无码一区二区 | 成 人 免费观看网站 | 久久99国产综合精品 | 国产一精品一av一免费 | 国产精品无码一区二区桃花视频 | 欧美人与牲动交xxxx | 中文字幕日产无线码一区 | 无码福利日韩神码福利片 | 帮老师解开蕾丝奶罩吸乳网站 | 亚洲色大成网站www | 日日摸天天摸爽爽狠狠97 | 在教室伦流澡到高潮hnp视频 | 中文字幕无码av波多野吉衣 | 久久久www成人免费毛片 | 亚洲国产精品毛片av不卡在线 | 日日噜噜噜噜夜夜爽亚洲精品 | 欧美 丝袜 自拍 制服 另类 | 国产精品亚洲а∨无码播放麻豆 | 国产精品亚洲综合色区韩国 | 亚洲七七久久桃花影院 | 久久国产精品萌白酱免费 | 乱人伦人妻中文字幕无码 | 97无码免费人妻超级碰碰夜夜 | 特黄特色大片免费播放器图片 | 国产成人无码av在线影院 | 激情亚洲一区国产精品 | 久久婷婷五月综合色国产香蕉 | 久久aⅴ免费观看 | 亚洲精品午夜国产va久久成人 | 亚洲午夜久久久影院 | 疯狂三人交性欧美 | 亚洲s码欧洲m码国产av | 国色天香社区在线视频 | 久久久精品456亚洲影院 | 老子影院午夜精品无码 | 波多野结衣高清一区二区三区 | 无遮无挡爽爽免费视频 | 性欧美熟妇videofreesex | 少妇久久久久久人妻无码 | 国产精品办公室沙发 | 理论片87福利理论电影 | 图片区 小说区 区 亚洲五月 | 亚洲中文字幕av在天堂 | 久久久久久国产精品无码下载 | 玩弄少妇高潮ⅹxxxyw | 无码午夜成人1000部免费视频 | 亚洲成av人综合在线观看 | 国产美女精品一区二区三区 | 国产精品爱久久久久久久 | 扒开双腿疯狂进出爽爽爽视频 | 国产精品香蕉在线观看 | 国产农村乱对白刺激视频 | 性做久久久久久久久 | www成人国产高清内射 | 300部国产真实乱 | 国产超碰人人爽人人做人人添 | 人人爽人人澡人人高潮 | 亚洲欧美综合区丁香五月小说 | 激情亚洲一区国产精品 | 欧美老熟妇乱xxxxx | 国产成人无码午夜视频在线观看 | 国产口爆吞精在线视频 | 国产精品人人爽人人做我的可爱 | 亚欧洲精品在线视频免费观看 | 亚洲精品一区三区三区在线观看 | 99久久精品无码一区二区毛片 | 亚洲中文字幕无码一久久区 | 久久精品一区二区三区四区 | 国产高清不卡无码视频 | 人人妻人人藻人人爽欧美一区 | 97久久国产亚洲精品超碰热 | av无码久久久久不卡免费网站 | 日产国产精品亚洲系列 | 麻豆果冻传媒2021精品传媒一区下载 | 99久久婷婷国产综合精品青草免费 | 国产偷自视频区视频 | 色综合视频一区二区三区 | 国产精品久久久一区二区三区 | 亚洲日本一区二区三区在线 | 中文毛片无遮挡高清免费 | 毛片内射-百度 | 国产精品亚洲五月天高清 | 激情爆乳一区二区三区 | 天下第一社区视频www日本 | 啦啦啦www在线观看免费视频 | 特大黑人娇小亚洲女 | 青春草在线视频免费观看 | 亚洲精品综合五月久久小说 | 久久久久成人片免费观看蜜芽 | 波多野结衣av一区二区全免费观看 | 综合网日日天干夜夜久久 | 亚洲国产欧美国产综合一区 | 日韩无套无码精品 | 黑人大群体交免费视频 | 四虎影视成人永久免费观看视频 | 未满小14洗澡无码视频网站 | 成年美女黄网站色大免费视频 | 在线а√天堂中文官网 | 伊在人天堂亚洲香蕉精品区 | 久在线观看福利视频 | 欧美性色19p | 国产真实乱对白精彩久久 | 丰满人妻被黑人猛烈进入 | 又色又爽又黄的美女裸体网站 | 在线播放无码字幕亚洲 | 亚洲狠狠色丁香婷婷综合 | 中国女人内谢69xxxx | 久久亚洲国产成人精品性色 | 一本久久a久久精品亚洲 | 高清无码午夜福利视频 | 欧洲熟妇色 欧美 | 一区二区三区高清视频一 | 牲欲强的熟妇农村老妇女视频 | 亚洲七七久久桃花影院 | 欧美 丝袜 自拍 制服 另类 | 最新版天堂资源中文官网 | 精品国产精品久久一区免费式 | 日韩 欧美 动漫 国产 制服 | 国产在线精品一区二区三区直播 | 乱码av麻豆丝袜熟女系列 | 捆绑白丝粉色jk震动捧喷白浆 | 成人无码影片精品久久久 | 大地资源网第二页免费观看 | 岛国片人妻三上悠亚 | 国产另类ts人妖一区二区 | 亚洲一区二区三区在线观看网站 | 亚洲人成网站免费播放 | 强辱丰满人妻hd中文字幕 | 76少妇精品导航 | 无遮挡啪啪摇乳动态图 | 亚洲日韩av片在线观看 | 日韩av无码一区二区三区 | 亚洲国产精品无码一区二区三区 | 亚洲色欲久久久综合网东京热 | 日本丰满护士爆乳xxxx | 欧美日韩一区二区综合 | 日本免费一区二区三区最新 | 国产av一区二区精品久久凹凸 | 色综合久久久无码中文字幕 | 色婷婷久久一区二区三区麻豆 | 国产乱人偷精品人妻a片 | 国产三级久久久精品麻豆三级 | 一个人看的www免费视频在线观看 | 内射爽无广熟女亚洲 | 精品久久久中文字幕人妻 | 午夜无码人妻av大片色欲 | 亚洲aⅴ无码成人网站国产app | 99久久久国产精品无码免费 | 无码国产乱人伦偷精品视频 | 一本色道久久综合狠狠躁 | 免费视频欧美无人区码 | 亚洲精品午夜国产va久久成人 | 色五月五月丁香亚洲综合网 | 人妻互换免费中文字幕 | 国产亚洲视频中文字幕97精品 | 亚洲人成无码网www | 久久99热只有频精品8 | 久久久婷婷五月亚洲97号色 | 无码一区二区三区在线观看 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲 a v无 码免 费 成 人 a v | 熟妇人妻激情偷爽文 | 好男人社区资源 | 精品夜夜澡人妻无码av蜜桃 | 亚洲国产欧美日韩精品一区二区三区 | 久久精品国产一区二区三区肥胖 | 婷婷五月综合缴情在线视频 | 国产极品视觉盛宴 | 色婷婷综合中文久久一本 | 亚洲熟妇色xxxxx欧美老妇 | 午夜无码人妻av大片色欲 | 乱码av麻豆丝袜熟女系列 | 乱码av麻豆丝袜熟女系列 | 青春草在线视频免费观看 | 四虎影视成人永久免费观看视频 | 国产特级毛片aaaaaaa高清 | 精品欧洲av无码一区二区三区 | 久在线观看福利视频 | 在线观看国产午夜福利片 | 亚洲欧美中文字幕5发布 | 人妻体内射精一区二区三四 | 2019nv天堂香蕉在线观看 | 狠狠色丁香久久婷婷综合五月 | 亚洲伊人久久精品影院 | av人摸人人人澡人人超碰下载 | 无码av免费一区二区三区试看 | 一本精品99久久精品77 | 成在人线av无码免费 | 天堂在线观看www | 四虎永久在线精品免费网址 | 天天综合网天天综合色 | 欧美成人高清在线播放 | 亚洲 激情 小说 另类 欧美 | 麻花豆传媒剧国产免费mv在线 | 欧美熟妇另类久久久久久不卡 | 亚洲精品国产第一综合99久久 | 国产精品久久久av久久久 | 亚洲啪av永久无码精品放毛片 | 亚洲中文字幕成人无码 | 国产乱人无码伦av在线a | 亚洲综合无码一区二区三区 | 欧美zoozzooz性欧美 | 欧美阿v高清资源不卡在线播放 | 亚洲成av人影院在线观看 | 国产高清av在线播放 | 强辱丰满人妻hd中文字幕 | 老熟妇乱子伦牲交视频 | 欧美xxxx黑人又粗又长 | 亚洲va中文字幕无码久久不卡 | 国产亚洲精品久久久久久久久动漫 | 亚洲成av人片在线观看无码不卡 | 国产精品亚洲一区二区三区喷水 | 一二三四在线观看免费视频 | 亚洲日本在线电影 | 午夜免费福利小电影 | 国产一区二区三区日韩精品 | 人妻插b视频一区二区三区 | 欧美人与善在线com | 1000部啪啪未满十八勿入下载 | 国产免费观看黄av片 | 国产麻豆精品精东影业av网站 | 正在播放东北夫妻内射 | 亚洲精品综合一区二区三区在线 | 欧美成人午夜精品久久久 | √天堂资源地址中文在线 | 99久久精品午夜一区二区 | 狠狠cao日日穞夜夜穞av | 国产三级久久久精品麻豆三级 | 欧美老妇与禽交 | 伊人久久大香线蕉av一区二区 | 无码吃奶揉捏奶头高潮视频 | 鲁鲁鲁爽爽爽在线视频观看 | 国产一区二区三区精品视频 | 国内综合精品午夜久久资源 | 国产乱码精品一品二品 | 熟妇人妻无乱码中文字幕 | 久久人人97超碰a片精品 | 午夜丰满少妇性开放视频 | 亚洲色欲久久久综合网东京热 | 成人精品天堂一区二区三区 | 欧美丰满熟妇xxxx性ppx人交 | 欧美喷潮久久久xxxxx | 亚洲成色在线综合网站 | 午夜精品一区二区三区在线观看 | 成人精品一区二区三区中文字幕 | 少妇被黑人到高潮喷出白浆 | 国产av剧情md精品麻豆 | 麻豆国产人妻欲求不满谁演的 | 久久国产精品精品国产色婷婷 | 99久久精品国产一区二区蜜芽 | 成人精品视频一区二区 | 亚洲精品鲁一鲁一区二区三区 | 国产一区二区不卡老阿姨 | 黑人玩弄人妻中文在线 | 窝窝午夜理论片影院 | 在线观看国产午夜福利片 | 精品一区二区不卡无码av | 宝宝好涨水快流出来免费视频 | 人妻aⅴ无码一区二区三区 | √天堂资源地址中文在线 | 国产精品理论片在线观看 | 久久这里只有精品视频9 | 夜夜高潮次次欢爽av女 | 成人性做爰aaa片免费看 | 国产麻豆精品精东影业av网站 | 国产日产欧产精品精品app | 特大黑人娇小亚洲女 | 奇米影视7777久久精品人人爽 | 色婷婷欧美在线播放内射 | 亚洲国产午夜精品理论片 | 免费乱码人妻系列无码专区 | 亚洲爆乳大丰满无码专区 | av香港经典三级级 在线 | 久久久久人妻一区精品色欧美 | 国内精品一区二区三区不卡 | 在线观看国产一区二区三区 | 国产成人精品视频ⅴa片软件竹菊 | 国产黄在线观看免费观看不卡 | 亚洲色欲久久久综合网东京热 | 亚洲精品欧美二区三区中文字幕 | 人人超人人超碰超国产 | 一本久久伊人热热精品中文字幕 | 免费无码一区二区三区蜜桃大 | 色欲av亚洲一区无码少妇 | 亚洲男女内射在线播放 | 又大又紧又粉嫩18p少妇 | 亚洲 激情 小说 另类 欧美 | 精品无码成人片一区二区98 | 国产疯狂伦交大片 | 欧美日韩综合一区二区三区 | 国产一区二区三区影院 | 任你躁在线精品免费 | 67194成是人免费无码 | 丝袜 中出 制服 人妻 美腿 | 性欧美牲交在线视频 | 狂野欧美激情性xxxx | 久久午夜夜伦鲁鲁片无码免费 | 国内综合精品午夜久久资源 | 99久久精品午夜一区二区 | 亚洲一区二区三区四区 | 亚洲欧美精品伊人久久 | 天堂а√在线中文在线 | √天堂中文官网8在线 | 人人澡人人妻人人爽人人蜜桃 | 日日橹狠狠爱欧美视频 | 18禁黄网站男男禁片免费观看 | 国产精品久久久午夜夜伦鲁鲁 | 亚洲精品一区国产 | 国产成人一区二区三区在线观看 | 国产高清不卡无码视频 | 国产成人综合在线女婷五月99播放 | 国产午夜亚洲精品不卡下载 | 欧美freesex黑人又粗又大 | 国产激情无码一区二区app | 欧美性生交活xxxxxdddd | 天干天干啦夜天干天2017 | 亚洲成a人片在线观看无码3d | 熟妇人妻无码xxx视频 | 伊人久久婷婷五月综合97色 | 国产黄在线观看免费观看不卡 | yw尤物av无码国产在线观看 | 欧美色就是色 | 中文字幕无码av波多野吉衣 | 亚洲精品久久久久久久久久久 | 无码国内精品人妻少妇 | 一本大道伊人av久久综合 | 国产在线一区二区三区四区五区 | 亚洲日韩av一区二区三区中文 | 久久99热只有频精品8 | 俺去俺来也www色官网 | 性色欲网站人妻丰满中文久久不卡 | 亚洲热妇无码av在线播放 | 捆绑白丝粉色jk震动捧喷白浆 | a在线亚洲男人的天堂 | 国产国产精品人在线视 | 午夜精品一区二区三区的区别 | 欧美成人午夜精品久久久 | 久久亚洲a片com人成 | 亚洲精品综合五月久久小说 | 亚洲精品国偷拍自产在线麻豆 | 久久国产精品精品国产色婷婷 | 99久久无码一区人妻 | 狠狠综合久久久久综合网 | 亚无码乱人伦一区二区 | 国产激情艳情在线看视频 | 成人欧美一区二区三区黑人 | 无码av免费一区二区三区试看 | 国产无遮挡吃胸膜奶免费看 | 亚洲中文字幕在线无码一区二区 | 国产肉丝袜在线观看 | 一本久久a久久精品亚洲 | 欧美 日韩 人妻 高清 中文 | 亚洲阿v天堂在线 | 久久久久99精品成人片 | 十八禁真人啪啪免费网站 | 日韩精品乱码av一区二区 | 粉嫩少妇内射浓精videos | 在线观看免费人成视频 | 国产亚洲精品久久久闺蜜 | 网友自拍区视频精品 | 午夜理论片yy44880影院 | 夜精品a片一区二区三区无码白浆 | 精品偷拍一区二区三区在线看 | 伊在人天堂亚洲香蕉精品区 | 久久综合狠狠综合久久综合88 | 免费人成在线观看网站 | 亚洲欧美中文字幕5发布 | 人妻少妇精品无码专区动漫 | 欧美性黑人极品hd | 国产后入清纯学生妹 | 三上悠亚人妻中文字幕在线 | 精品国产国产综合精品 | 亚洲精品国偷拍自产在线观看蜜桃 | 久久久久亚洲精品中文字幕 | 国产精品无套呻吟在线 | 高潮毛片无遮挡高清免费视频 | 牲交欧美兽交欧美 | 永久免费精品精品永久-夜色 | 99久久久无码国产aaa精品 | 亚洲精品一区二区三区在线 | 国产欧美熟妇另类久久久 | 国产超碰人人爽人人做人人添 | 国产欧美精品一区二区三区 | 国产肉丝袜在线观看 | 天天躁日日躁狠狠躁免费麻豆 | 2020最新国产自产精品 | 在线成人www免费观看视频 | 伊人久久婷婷五月综合97色 | 国产精华av午夜在线观看 | 国产亚洲日韩欧美另类第八页 | 精品无码一区二区三区爱欲 | 精品日本一区二区三区在线观看 | 国产精品久久久久无码av色戒 | 欧美人与动性行为视频 | 无码乱肉视频免费大全合集 | 国産精品久久久久久久 | 少妇性l交大片欧洲热妇乱xxx | 欧美 日韩 人妻 高清 中文 | 99久久无码一区人妻 | 男人和女人高潮免费网站 | 国产成人综合色在线观看网站 | 国产综合在线观看 | 亚洲 日韩 欧美 成人 在线观看 | 欧美老妇与禽交 | 国产精品视频免费播放 | av香港经典三级级 在线 | 国精产品一品二品国精品69xx | 精品久久久无码人妻字幂 | 精品国精品国产自在久国产87 | 未满小14洗澡无码视频网站 | 欧美亚洲国产一区二区三区 | 久久综合九色综合97网 | 国色天香社区在线视频 | 日本xxxx色视频在线观看免费 | 久久综合久久自在自线精品自 | 日本免费一区二区三区最新 | √天堂中文官网8在线 | 日本熟妇乱子伦xxxx | 少妇高潮喷潮久久久影院 | 成熟女人特级毛片www免费 | 精品无码一区二区三区的天堂 | 欧美第一黄网免费网站 | 大肉大捧一进一出好爽视频 | 香港三级日本三级妇三级 | 国内少妇偷人精品视频 | 理论片87福利理论电影 | 国产黄在线观看免费观看不卡 | 亚拍精品一区二区三区探花 | 又色又爽又黄的美女裸体网站 | 成人动漫在线观看 | 久久精品中文闷骚内射 | a片免费视频在线观看 | 最近免费中文字幕中文高清百度 | 欧美激情综合亚洲一二区 | 性做久久久久久久免费看 | 亚洲日本在线电影 | 人人妻人人澡人人爽欧美精品 | 精品无码av一区二区三区 | 少妇激情av一区二区 | 久久人人爽人人人人片 | 国产激情艳情在线看视频 | 乱人伦人妻中文字幕无码久久网 | 无遮挡啪啪摇乳动态图 | 成 人 免费观看网站 | 国产成人综合色在线观看网站 | 宝宝好涨水快流出来免费视频 | 波多野结衣乳巨码无在线观看 | 亚洲国产成人a精品不卡在线 | 成人精品天堂一区二区三区 | 国产在线精品一区二区高清不卡 | 国产精品人人爽人人做我的可爱 | 国产成人精品一区二区在线小狼 | 亚洲人亚洲人成电影网站色 | 成人三级无码视频在线观看 | 男女爱爱好爽视频免费看 | 中文字幕无码免费久久99 | 欧美熟妇另类久久久久久不卡 | 久久精品中文字幕一区 | 水蜜桃亚洲一二三四在线 | 国产色xx群视频射精 | 国产熟妇高潮叫床视频播放 | 亚洲精品欧美二区三区中文字幕 | 久久亚洲a片com人成 | 美女毛片一区二区三区四区 | 精品国产福利一区二区 | 国产精华av午夜在线观看 | 黑人玩弄人妻中文在线 | 人妻aⅴ无码一区二区三区 | 国产精品高潮呻吟av久久4虎 | 亚洲乱码国产乱码精品精 |