日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

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

javascript

SpringBoot_配置-@Conditional自动配置报告

發(fā)布時(shí)間:2024/4/13 javascript 60 豆豆
生活随笔 收集整理的這篇文章主要介紹了 SpringBoot_配置-@Conditional自动配置报告 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
前面我們通過分析HttpEncodingAutoConfiguration,給大家講解了一下自動配置的原理,那么在自動配置的時(shí)候呢,就是這個(gè)自動配置要能夠生效,他有一些判斷,conditional這些注解,這些判斷成功了以后,這個(gè)自動配置才能夠生效,包括我們來看,我們給容器中加組件的時(shí)候@Bean @ConditionalOnMissingBean(CharacterEncodingFilter.class) public CharacterEncodingFilter characterEncodingFilter() {CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();filter.setEncoding(this.properties.getCharset().name());filter.setForceRequestEncoding(this.properties.shouldForce(Type.REQUEST));filter.setForceResponseEncoding(this.properties.shouldForce(Type.RESPONSE));return filter; }@Bean來給容器中添加組件,當(dāng)然添加的時(shí)候也有條件判斷,這個(gè)條件判斷叫@ConditionalOnMissingBean,容器中必須沒有這個(gè)組件,MissingBean叫沒有的意思,容器中如果沒有配過這個(gè)組件,那我就給你配一個(gè),現(xiàn)在就有這么多的@ConditionalOn,他們底層就是用Spring的Condition注解做的@Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Documented @Conditional(OnClassCondition.class) public @interface ConditionalOnClass {這個(gè)Condition注解后面指定的是一個(gè)條件,判斷類,這個(gè)條件判斷類有一個(gè)match方法@Override public boolean[] match(String[] autoConfigurationClasses,AutoConfigurationMetadata autoConfigurationMetadata) {ConditionEvaluationReport report = getConditionEvaluationReport();ConditionOutcome[] outcomes = getOutcomes(autoConfigurationClasses,autoConfigurationMetadata);boolean[] match = new boolean[outcomes.length];for (int i = 0; i < outcomes.length; i++) {match[i] = (outcomes[i] == null || outcomes[i].isMatch());if (!match[i] && outcomes[i] != null) {logOutcome(autoConfigurationClasses[i], outcomes[i]);if (report != null) {report.recordConditionEvaluation(autoConfigurationClasses[i], this,outcomes[i]);}}}return match; }我們自己可以寫JAVA代碼,只要匹配了就返回true,不匹配就返回false,返回false的情況下就相當(dāng)于條件失敗,一旦條件判斷失敗,后邊就可以不執(zhí)行了,像這個(gè)原生的注解,我們Spring版注解里都有,咱們可以看原生的condition作用,必須是@Conditional指定的條件成立, 才能給容器添加組件,配置文件類里的所有內(nèi)容才生效,而我們Condition把注解擴(kuò)展了很多

原理就是我們注解版里講的,作用大概看一下,第一個(gè)ConditionalOnJava,他的作用就是判斷,我們當(dāng)前的JAVA版本是否符合要求,是不是高版本的JAVA還是低版本的JAVA,還有ConditionalOnBean,他的判斷意思是,我們?nèi)萜髦惺欠翊嬖谥付ǖ慕M件,比如我們在配置filter的時(shí)候,他就標(biāo)了一個(gè)@ConditionalOnMissingBean(CharacterEncodingFilter.class)MissingBean判斷容器中沒有這個(gè)組件,如果沒有這個(gè)組件,判斷成立了,容器中確實(shí)沒有這個(gè)組件,我才給你加,否則就不加,與之對應(yīng)的,有ConditionalOnBean,容器中有這個(gè)組件和容器中沒有這個(gè)組件,然后還有是否滿足SPEL表達(dá)式,還有容器中有這個(gè)類,容器中有這個(gè)類就給你干,如果沒有就算了,還有容器中沒有這個(gè)類,如果容器中沒有這個(gè)類,就給你添加,有這個(gè)類我就不做,等等這些判斷,還有OnProperty,判斷系統(tǒng)中是否有指定的屬性,也就是輸歐你在配置文件里邊,是否配了指定的屬性,Resouce檢查類路徑下是否有指定的資源,包括ConditionalOnWebApplication,看一下是否是當(dāng)前WEB環(huán)境,這個(gè)判斷你當(dāng)前必須不是WEB環(huán)境,然后JNDI是否存在指定項(xiàng),底層原理就是Spring的Conditional,基于這個(gè)條件,我們可以想到,雖然我們自動配置類非常多,自動配置類都在spring-boot-autoconfigure-1.5.12.RELEASE.jar這個(gè)包下,這個(gè)包專門有一個(gè)文件,叫做spring.factories,有這么多文件都是自動配置類,但是由于自動配置類有條件才能生效,自動配置類必須要在一定的條件下才能生效,雖然我們加了這么多自動配置,但不是所有的功能都生效的,比如我舉一個(gè)例子,AOP要生效的場景是什么呢@Configuration @ConditionalOnClass({ EnableAspectJAutoProxy.class, Aspect.class, Advice.class }) @ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true) public class AopAutoConfiguration {他要判斷@ConditionalOnClass,加入我們項(xiàng)目里面有一個(gè)類,EnableAspectJAutoProxy.class, Aspect.class, Advice.class,Aspect是我們的切面類,切面類要導(dǎo)入Aspect;這個(gè)jar包,沒有aop相關(guān)的jar包,所以aop的功能還不能用,自動配置類要在一定條件下才能夠生效,我們現(xiàn)在重要的任務(wù)就是,我們怎么知道我們那些自動配置類生效了,我們只有知道哪些自動配置類生效了,我們才可以看,AOP他做了什么活,但是如果我們挨個(gè)挨個(gè)來分析,這是不是太麻煩了,看我們項(xiàng)目下有沒有這個(gè)類,也沒有,那他就不生效,如果我們一個(gè)一個(gè)這么來判斷,太麻煩了,我們可以在配置文件中寫上一項(xiàng),debug我打成truedebug=true默認(rèn)是false,開啟Springboot的debug模式,會非常好用,我們來運(yùn)行一下,一旦debug模式進(jìn)來以后呢,控制臺就會告訴我們哪些用了哪些沒用,自動配置報(bào)告AUTO-CONFIGURATION REPORT我們可以通過啟用debug=ture屬性,來讓控制臺打印自動配置報(bào)告,這樣我們就可以很方便的知道,哪些自動配置類生效 debug=true server.port=8081#server.context-path=/boot02spring.http.encoding.charset=UTF-8 spring.http.encoding.enabled=true spring.http.encoding.force=true Positive matches:,positive就是生效的,DispatcherServletAutoConfiguration自動配置,DispatcherServletAutoConfiguration這個(gè)也匹配上了,這里會打印,匹配的在這里有這么多,這些自動配置就啟用了,這里還有一個(gè)Negative matches:我們沒有匹配上的,ActiveMQAutoConfiguration沒有匹配上,AopAutoConfiguration確實(shí)也沒有匹配上,我們截取兩個(gè)就行了我們就不全復(fù)制來了,自動匹配報(bào)告里面,打印了我們已經(jīng)匹配的東西,positive matches,自動配置類啟用的,哪些自動配置類啟用了,當(dāng)然還有打印沒有啟用的,有這些自動類沒有啟用,然后我們通過啟用了,這些類幫我們做了什么功能,沒有啟用,沒有匹配成功的,自動配置類,我們通過它來分析就行了,以后我們要用springboot,我們要用控制臺看一下,當(dāng)前哪些自動配置起作用了,看一下幫我們干了什么活 Positive matches: -----------------DispatcherServletAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (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 beans 'dispatcherServlet', 'dispatcherServlet' (OnBeanCondition)EmbeddedServletContainerAutoConfiguration matched:- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)EmbeddedServletContainerAutoConfiguration.EmbeddedTomcat matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnMissingBean (types: org.springframework.boot.context.embedded.EmbeddedServletContainerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)ErrorMvcAutoConfiguration#basicErrorController matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)ErrorMvcAutoConfiguration#errorAttributes matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.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.DefaultErrorViewResolver; 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'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)- @ConditionalOnProperty (spring.http.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'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)HttpMessageConvertersAutoConfiguration#messageConverters matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter'; @ConditionalOnMissingClass did not find unwanted class (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'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:- @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:- @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (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 classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:- @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:- @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnProperty (spring.http.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; SearchStrategy: all) did not find any beans (OnBeanCondition)JmxAutoConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter'; @ConditionalOnMissingClass did not find unwanted class (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)MultipartAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnProperty (spring.http.multipart.enabled) matched (OnPropertyCondition)MultipartAutoConfiguration#multipartConfigElement matched:- @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement; 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)RedisCacheConfiguration matched:- Cache org.springframework.boot.autoconfigure.cache.RedisCacheConfiguration automatic cache type (CacheCondition)ServerPropertiesAutoConfiguration matched:- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)ServerPropertiesAutoConfiguration#serverProperties matched:- @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.ServerProperties; SearchStrategy: current) did not find any beans (OnBeanCondition)SimpleCacheConfiguration matched:- Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)ValidationAutoConfiguration matched:- @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnResource found location classpath:META-INF/services/javax.validation.spi.ValidationProvider (OnResourceCondition)ValidationAutoConfiguration#defaultValidator matched:- @ConditionalOnMissingBean (types: javax.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)ValidationAutoConfiguration#methodValidationPostProcessor matched:- @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)WebClientAutoConfiguration.RestTemplateConfiguration matched:- @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)WebClientAutoConfiguration.RestTemplateConfiguration#restTemplateBuilder matched:- @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; 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.WebMvcConfigurerAdapter'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)- @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration#hiddenHttpMethodFilter matched:- @ConditionalOnMissingBean (types: org.springframework.web.filter.HiddenHttpMethodFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)WebMvcAutoConfiguration#httpPutFormContentFilter matched:- @ConditionalOnProperty (spring.mvc.formcontent.putfilter.enabled) matched (OnPropertyCondition)- @ConditionalOnMissingBean (types: org.springframework.web.filter.HttpPutFormContentFilter; 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)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter.FaviconConfiguration matched:- @ConditionalOnProperty (spring.mvc.favicon.enabled) matched (OnPropertyCondition)WebSocketAutoConfiguration matched:- @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition)WebSocketAutoConfiguration.TomcatWebSocketConfiguration matched:- @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)WebSocketAutoConfiguration.TomcatWebSocketConfiguration#websocketContainerCustomizer matched:- @ConditionalOnJava (1.7 or newer) found 1.8 (OnJavaCondition)- @ConditionalOnMissingBean (names: websocketContainerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) Negative matches: -----------------ActiveMQAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.ActiveMQConnectionFactory' (OnClassCondition)AopAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.aspectj.lang.annotation.Aspect', 'org.aspectj.lang.reflect.Advice' (OnClassCondition)ArtemisAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory' (OnClassCondition)BatchAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.batch.core.launch.JobLauncher', 'org.springframework.jdbc.core.JdbcOperations' (OnClassCondition)CacheAutoConfiguration:Did not match:- @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)Matched:- @ConditionalOnClass found required class 'org.springframework.cache.CacheManager'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)CacheAutoConfiguration.CacheManagerJpaDependencyConfiguration: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 classes 'com.github.benmanes.caffeine.cache.Caffeine', 'org.springframework.cache.caffeine.CaffeineCacheManager' (OnClassCondition)CassandraAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.datastax.driver.core.Cluster' (OnClassCondition)CassandraDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.datastax.driver.core.Cluster', 'org.springframework.data.cassandra.core.CassandraAdminOperations' (OnClassCondition)CassandraRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.datastax.driver.core.Session', 'org.springframework.data.cassandra.repository.CassandraRepository' (OnClassCondition)CloudAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.cloud.config.java.CloudScanConfiguration' (OnClassCondition)CouchbaseAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.couchbase.client.java.CouchbaseBucket', 'com.couchbase.client.java.Cluster' (OnClassCondition)CouchbaseCacheConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'com.couchbase.client.spring.cache.CouchbaseCacheManager' (OnClassCondition)CouchbaseDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.CouchbaseRepository' (OnClassCondition)CouchbaseRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.CouchbaseRepository' (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 classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)DeviceDelegatingViewResolverAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.mobile.device.view.LiteDeviceDelegatingViewResolver' (OnClassCondition)DeviceResolverAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.mobile.device.DeviceResolverHandlerInterceptor', 'org.springframework.mobile.device.DeviceHandlerMethodArgumentResolver' (OnClassCondition)DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:Did not match:- @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)EhCacheCacheConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'net.sf.ehcache.Cache', 'org.springframework.cache.ehcache.EhCacheCacheManager' (OnClassCondition)ElasticsearchAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.client.TransportClientFactoryBean', 'org.springframework.data.elasticsearch.client.NodeClientFactoryBean' (OnClassCondition)ElasticsearchDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.core.ElasticsearchTemplate' (OnClassCondition)ElasticsearchRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (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 classes 'com.mongodb.MongoClient', 'de.flapdoodle.embed.mongo.MongodStarter' (OnClassCondition)EmbeddedServletContainerAutoConfiguration.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)EmbeddedServletContainerAutoConfiguration.EmbeddedUndertow:Did not match:- @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)FacebookAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.social.config.annotation.SocialConfigurerAdapter', 'org.springframework.social.facebook.connect.FacebookConnectionFactory' (OnClassCondition)FallbackWebSecurityAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (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 classes 'freemarker.template.Configuration', 'org.springframework.ui.freemarker.FreeMarkerConfigurationFactory' (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)GuavaCacheConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.google.common.cache.CacheBuilder', 'org.springframework.cache.guava.GuavaCacheManager' (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 classes 'com.hazelcast.core.HazelcastInstance', 'com.hazelcast.spring.cache.HazelcastCacheManager' (OnClassCondition)HazelcastJpaDependencyAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.hazelcast.core.HazelcastInstance', 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)HibernateJpaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'javax.persistence.EntityManager' (OnClassCondition)HypermediaAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.hateoas.Resource', 'org.springframework.plugin.core.Plugin' (OnClassCondition)InfinispanCacheConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.infinispan.spring.provider.SpringEmbeddedCacheManager' (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 classes 'javax.cache.Caching', 'org.springframework.cache.jcache.JCacheCacheManager' (OnClassCondition)JacksonAutoConfiguration.JodaDateTimeJacksonConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.joda.time.DateTime', 'com.fasterxml.jackson.datatype.joda.ser.DateTimeSerializer', 'com.fasterxml.jackson.datatype.joda.cfg.JacksonJodaDateFormat' (OnClassCondition)JacksonAutoConfiguration.ParameterNamesModuleConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (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)JestAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.searchbox.client.JestClient' (OnClassCondition)JmsAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'javax.jms.Message', 'org.springframework.jms.core.JmsTemplate' (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)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)LdapDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)LdapRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)LinkedInAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.social.config.annotation.SocialConfigurerAdapter', 'org.springframework.social.linkedin.connect.LinkedInConnectionFactory' (OnClassCondition)LiquibaseAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition)MailSenderAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'javax.mail.internet.MimeMessage' (OnClassCondition)MailSenderValidatorAutoConfiguration:Did not match:- @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition)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.MongoClient' (OnClassCondition)MongoDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.mongodb.MongoClient', 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition)MongoRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'com.mongodb.MongoClient', 'org.springframework.data.mongodb.repository.MongoRepository' (OnClassCondition)MustacheAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)Neo4jDataAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.neo4j.ogm.session.SessionFactory', 'org.springframework.data.neo4j.transaction.Neo4jTransactionManager', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)Neo4jRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.neo4j.ogm.session.Neo4jSession', 'org.springframework.data.neo4j.repository.GraphRepository' (OnClassCondition)OAuth2AutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.common.OAuth2AccessToken' (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)RabbitAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.amqp.rabbit.core.RabbitTemplate', 'com.rabbitmq.client.Channel' (OnClassCondition)ReactorAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'reactor.spring.context.config.EnableReactor', 'reactor.Environment' (OnClassCondition)RedisAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.data.redis.connection.jedis.JedisConnection', 'org.springframework.data.redis.core.RedisOperations', 'redis.clients.jedis.Jedis' (OnClassCondition)RedisRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'redis.clients.jedis.Jedis', '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)SecurityAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.security.authentication.AuthenticationManager', 'org.springframework.security.config.annotation.authentication.configurers.GlobalAuthenticationConfigurerAdapter' (OnClassCondition)SecurityFilterAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)SendGridAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)SessionAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)SitePreferenceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.mobile.device.site.SitePreferenceHandlerInterceptor', 'org.springframework.mobile.device.site.SitePreferenceHandlerMethodArgumentResolver' (OnClassCondition)SocialWebAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.social.connect.web.ConnectController', 'org.springframework.social.config.annotation.SocialConfigurerAdapter' (OnClassCondition)SolrAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.apache.solr.client.solrj.impl.HttpSolrClient', 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition)SolrRepositoriesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.apache.solr.client.solrj.SolrClient', 'org.springframework.data.solr.repository.SolrRepository' (OnClassCondition)SpringApplicationAdminJmxAutoConfiguration:Did not match:- @ConditionalOnProperty (spring.application.admin.enabled=true) did not find property 'enabled' (OnPropertyCondition)SpringDataWebAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' (OnClassCondition)ThymeleafAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.thymeleaf.spring4.SpringTemplateEngine' (OnClassCondition)TransactionAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)TwitterAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'org.springframework.social.config.annotation.SocialConfigurerAdapter', 'org.springframework.social.twitter.connect.TwitterConnectionFactory' (OnClassCondition)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 bean 'beanNameViewResolver' (OnBeanCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#dateFormatter:Did not match:- @ConditionalOnProperty (spring.mvc.date-format) did not find property 'date-format' (OnPropertyCondition)WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#localeResolver:Did not match:- @ConditionalOnProperty (spring.mvc.locale) did not find property 'locale' (OnPropertyCondition)WebServicesAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)WebSocketAutoConfiguration.JettyWebSocketConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition)WebSocketAutoConfiguration.UndertowWebSocketConfiguration:Did not match:- @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)WebSocketMessagingAutoConfiguration:Did not match:- @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)XADataSourceAutoConfiguration:Did not match:- @ConditionalOnClass did not find required classes 'javax.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)

?

超強(qiáng)干貨來襲 云風(fēng)專訪:近40年碼齡,通宵達(dá)旦的技術(shù)人生

總結(jié)

以上是生活随笔為你收集整理的SpringBoot_配置-@Conditional自动配置报告的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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

五月婷婷激情六月 | 久久久久久久久久电影 | 二区三区av | 国产精品99久久久久久久久久久久 | 看黄色.com| 日日碰狠狠躁久久躁综合网 | 欧美二区视频 | 久久久久久久久久久高潮一区二区 | 久久综合九色综合欧美狠狠 | 狠狠操在线 | 欧美成人理伦片 | 国产免费叼嘿网站免费 | 婷婷日| 欧美亚洲精品在线观看 | 久久久午夜影院 | 亚洲精品日韩在线观看 | 91九色网址| 久草网视频 | 天堂v中文 | 久久五月婷婷丁香社区 | 欧美污在线观看 | 色视频网站在线观看一=区 a视频免费在线观看 | 麻豆视频免费入口 | 久久精品一二三区白丝高潮 | 久久99免费 | 亚洲h色精品| 婷婷亚洲五月 | 亚洲精品一区二区网址 | 综合激情 | 99视频精品免费观看, | 精品国产电影 | 九九热99视频 | 激情久久影院 | 免费a视频在线 | 日韩视频欧美视频 | 国产精品福利在线播放 | 黄色三级免费看 | 在线免费观看黄网站 | 91 在线视频 | 人人爽人人爽人人爽学生一级 | 国产麻豆果冻传媒在线观看 | 日韩一级电影在线 | 国产免费激情久久 | a电影免费看 | 丁香一区二区 | 91av视频在线免费观看 | 国产精品乱码一区二区视频 | 国产成人精品一区一区一区 | 久久96国产精品久久99漫画 | 天天干夜夜操视频 | 射久久久 | 91视频-88av | 超碰公开在线观看 | 色婷婷久久| 日韩免费视频 | 伊色综合久久之综合久久 | 亚洲三级在线播放 | 毛片永久新网址首页 | 黄视频网站大全 | 狠狠成人 | 中文字幕精品视频 | 草久视频在线 | 国产亚洲一区二区在线观看 | 亚洲精品美女在线观看播放 | 欧美日韩中文另类 | 国产91在线免费视频 | 久久激情视频免费观看 | 久久电影色 | 中文字幕人成人 | 99精品视频在线观看免费 | 亚洲国产成人在线 | 日韩精品一区二区三区在线播放 | 能在线看的av | 久久久国产精品一区二区三区 | 国产精品电影一区 | 免费看av在线 | 免费日韩 精品中文字幕视频在线 | 色婷av| 国产精品成人一区二区 | 国产一级黄色电影 | 伊人久久婷婷 | 玖玖视频在线 | 国产亚洲在线观看 | 亚洲午夜久久久久久久久久久 | 成人在线观看日韩 | 欧美最猛性xxxx | 免费国产视频 | 亚洲精品在线视频观看 | 天天鲁一鲁摸一摸爽一爽 | 91经典在线 | 亚洲精品久久久久久国 | 中文字幕av在线免费 | 一级黄色片在线免费看 | 精品天堂av | 黄影院| 中文字幕在线观看免费观看 | 久久精品牌麻豆国产大山 | 91日本在线播放 | 日韩午夜在线播放 | 2024国产精品视频 | 成人综合婷婷国产精品久久免费 | 国产精品日韩欧美一区二区 | 久久男人免费视频 | 一级性av | 欧美大jb| 国产午夜亚洲精品 | 国产福利小视频在线 | 日韩精品aaa | 三级av免费看 | 精品久久久免费 | 天堂va在线观看 | 中文字幕影片免费在线观看 | 国产一区福利 | 国产一区二区手机在线观看 | 免费黄色在线网站 | 色射色 | 国产精品成人免费一区久久羞羞 | www亚洲一区 | 国产中文字幕网 | 成人禁用看黄a在线 | 成人视屏免费看 | 久久亚洲综合色 | 高潮久久久 | 99综合久久 | 色97在线| 黄色软件在线观看免费 | 亚洲福利精品 | 婷婷丁香在线 | 亚洲最大的av网站 | 久久草草影视免费网 | 夜色成人av| 91丨porny丨九色 | 99国产在线观看 | 综合网伊人 | 日韩丝袜在线观看 | 亚洲一区美女视频在线观看免费 | 日本黄色免费在线 | 97香蕉久久超级碰碰高清版 | 久章草在线 | 国产a国产| 国产精品一区二区av | 日韩在线视频免费看 | 国产91欧美 | 九九视频在线播放 | 国产免费一区二区三区最新 | 免费av观看网站 | 欧美日韩国产页 | 在线精品在线 | 91视频在线国产 | 久久综合久久综合这里只有精品 | 麻豆视频在线观看 | 免费合欢视频成人app | 欧美性久久久久久 | 日韩二区三区在线观看 | 亚洲精品一区二区三区在线观看 | 97国产人人| 欧美日韩在线精品一区二区 | 天天操比 | 日日爱网址 | 久久激情视频 久久 | 欧美午夜精品久久久久久浪潮 | 国产成人三级 | 黄色大片国产 | av在线播放一区二区三区 | 国产精品成人品 | 国产一区视频在线观看免费 | 久久成人高清 | 亚洲成人家庭影院 | 国产分类视频 | 黄色小说视频在线 | 中文字幕在线观看91 | 黄色av电影 | 东方av免费在线观看 | 色婷婷激婷婷情综天天 | 少妇高潮流白浆在线观看 | 亚洲精品色视频 | 手机成人在线电影 | 精品国产123 | 久久夜色精品国产欧美乱 | 中文字幕在线影院 | 在线免费观看一区二区三区 | 国产精品一区二区久久精品爱涩 | 亚洲国产精品电影 | 在线视频电影 | 亚洲免费视频在线观看 | 中文字幕 欧美性 | 狠狠色噜噜狠狠 | 亚洲国产日韩一区 | 在线中文字幕一区二区 | av大片免费看| 国产精品久久久久免费 | 亚洲欧美视频网站 | 91精品国产麻豆国产自产影视 | 欧美a在线看 | 在线观看亚洲成人 | 日韩在线观看第一页 | 91在线免费观看网站 | 欧美另类xxx | 精品国内自产拍在线观看视频 | 亚洲精品网页 | 色婷av| 天天色欧美 | 天天干天天射天天爽 | www.香蕉视频在线观看 | 国产精品麻豆视频 | 中文字幕一区二区三区在线观看 | 久久久久激情 | 狠狠色丁香婷婷 | 国产在线视频一区二区 | 亚洲第一香蕉视频 | 91在线网址 | 亚洲最新av在线网址 | 97超碰.com| 久久久精品免费观看 | 香蕉在线视频观看 | 日本黄色免费看 | 又黄又刺激的视频 | 国产艹b视频 | 麻豆影视在线免费观看 | 国产乱对白刺激视频不卡 | 亚洲欧洲国产视频 | www最近高清中文国语在线观看 | 亚洲女在线 | 欧美大片第1页 | 特级毛片网 | 中文字幕第 | 国产精品video爽爽爽爽 | 日韩r级在线 | 精品久久久久久国产偷窥 | 国产成人精品午夜在线播放 | 日韩一区二区免费播放 | 一区 二区 精品 | 天天色天天干天天 | 欧美专区日韩专区 | 国产高清在线观看av | 在线观看黄色av | 久久97久久 | av中文字幕免费在线观看 | 91黄色在线观看 | 日本精品一区二区在线观看 | 久久96国产精品久久99漫画 | 亚洲精品视频大全 | 日韩综合色 | 亚洲欧洲日韩 | 国产午夜一级毛片 | 人成在线免费视频 | 狠狠躁夜夜a产精品视频 | 97超碰资源站 | 探花视频在线观看免费版 | 在线亚洲日本 | 精品视频久久久久久 | 免费日韩一区二区 | 亚州人成在线播放 | 天天操比 | 成人av网站在线播放 | 欧美一级性生活片 | 深爱激情五月网 | 在线观看视频你懂 | 久久久免费视频播放 | 精品久久精品久久 | 97精品一区二区三区 | 日韩电影中文,亚洲精品乱码 | 婷婷色伊人 | 亚洲免费不卡 | 91黄在线看| 久久精品亚洲精品国产欧美 | www久草| 91福利影院在线观看 | 国产精品欧美 | 亚洲午夜久久久综合37日本 | 激情综合色播五月 | 黄色录像av | 黄色aaaaa| 亚洲成a人片在线观看中文 中文字幕在线视频第一页 狠狠色丁香婷婷综合 | 天天摸日日操 | 色黄视频免费观看 | 国产精品久久久久久久免费 | 91福利视频一区 | 毛片精品免费在线观看 | 日p视频在线观看 | 国产在线观看你懂得 | 免费在线成人 | 国产精品免费视频一区二区 | 日韩在线免费不卡 | 国产精品久久久久久久妇 | 日韩在线精品 | 免费在线激情电影 | 久久9999久久免费精品国产 | 国产区精品| 深爱婷婷久久综合 | 久久激情五月婷婷 | 国产福利免费在线观看 | 又爽又黄又刺激的视频 | 久久久久国产精品一区二区 | 91精选在线观看 | 日韩中文字幕亚洲一区二区va在线 | 国内精品久久久久国产 | 福利视频一区二区 | 正在播放 久久 | 91在线中字 | 日韩欧美综合 | 亚洲乱码一区 | 日本中文字幕在线电影 | 欧美 日韩 视频 | 久久乱码卡一卡2卡三卡四 五月婷婷久 | 嫩草av在线 | 欧美日韩中| 国产一级在线看 | 亚洲成人国产 | 久久99久久99精品免费看小说 | 国产视频在线播放 | 久久精品久久精品 | 日韩av一区二区在线影视 | av中文字幕在线看 | 香蕉在线观看 | 日本黄色免费观看 | 在线日本看片免费人成视久网 | av在线日韩 | 亚洲区另类春色综合小说校园片 | 在线观看黄网站 | 亚洲精品视频一 | 高清不卡一区二区三区 | 欧美精品久久久久久久久老牛影院 | 2023国产精品自产拍在线观看 | 久久久久久久99精品免费观看 | 免费观看久久 | 国产偷国产偷亚洲清高 | www.久久久久 | 精品福利av | 欧美精品在线视频观看 | 国产成人精品国内自产拍免费看 | 97视频在线观看播放 | 国产精品亚洲人在线观看 | 欧美一区二区三区在线视频观看 | 超碰国产在线播放 | 日本久草电影 | 亚洲电影院 | 午夜 在线 | 中文字幕在线影视资源 | 五月婷婷综合在线视频 | 亚洲电影一区二区 | 91精品免费在线视频 | 天天想夜夜操 | 久久精品亚洲一区二区三区观看模式 | 久久久久久久亚洲精品 | 一区二区三区中文字幕在线观看 | 又粗又长又大又爽又黄少妇毛片 | 视频在线99 | 久草av在线播放 | 色综合婷婷| 国产精品免费麻豆入口 | 狠狠色狠狠色 | 91网页版在线观看 | 麻豆一区二区三区视频 | 91精品在线看 | 超碰在线网 | 国产在线观看国语版免费 | av黄网站 | 午夜免费久久看 | 久草免费在线观看 | 精品国产美女 | 97理论电影 | 97国产精品亚洲精品 | av丝袜在线| 久久久wwww | 成人资源在线观看 | 国产xxxx做受性欧美88 | 国产精品色 | 色97在线| 欧美日韩裸体免费视频 | 国产人成看黄久久久久久久久 | 日本中文字幕高清 | 国产999精品久久久久久麻豆 | 亚洲资源一区 | 午夜精品久久一牛影视 | 日韩乱色精品一区二区 | 国产手机在线观看 | 亚洲少妇天堂 | 国产高清精品在线观看 | 日韩免费在线一区 | 久久久久欠精品国产毛片国产毛生 | 久久免费视屏 | 麻花豆传媒mv在线观看网站 | 九热精品| 久久婷五月 | 美女国产在线 | 黄色在线小网站 | 国产黄在线免费观看 | 91亚洲精品在线 | 天天色天天干天天色 | 日本老少交 | 一区二区三区四区在线免费观看 | 午夜精品一区二区三区视频免费看 | 久草国产在线观看 | 久久高清毛片 | 午夜 在线 | 精品国产视频在线观看 | www好男人| 日韩免费电影一区二区 | 91精品一区二区在线观看 | 亚洲免费在线观看视频 | 91精品国产成人 | 天天操天天干天天 | 99999精品视频 | 99国产视频在线 | 国产一区二区不卡视频 | 欧美男同网站 | 不卡电影一区二区三区 | 中文在线8资源库 | 日韩免费不卡av | 91成版人在线观看入口 | 深夜免费福利 | 天堂网一区二区三区 | 97电影院在线观看 | 99在线热播 | 在线视频观看成人 | 成人wwwxxx视频 | 久久久久久久久久久网 | 欧美日韩色婷婷 | 免费日韩av片| 欧美精品久久久久久久久老牛影院 | 久久精品免视看 | 亚洲日韩欧美一区二区在线 | 黄在线免费看 | 国产成人精品一区一区一区 | 欧美日韩高清在线 | 成年人国产精品 | 中文字幕在线网 | 一区二区视频在线看 | 天天操·夜夜操 | 亚洲国产成人在线播放 | 国产我不卡 | 国产成人61精品免费看片 | 丁香激情五月 | 国产午夜精品在线 | 日韩理论在线 | 国模视频一区二区 | 精品久久久久久国产91 | 久久国产精品久久久久 | 热re99久久精品国产66热 | 成人h视频在线 | 国产麻豆剧果冻传媒视频播放量 | 成人黄色小说在线观看 | 国产精品麻豆视频 | 麻花豆传媒mv在线观看 | 日本一区二区三区免费观看 | 天天爱综合 | 日韩免费电影一区二区 | 欧美成人xxxxxxxx | 亚洲区视频在线 | 97色资源 | 中文字幕在线看视频国产中文版 | 久久久精品 | 午夜在线国产 | 日韩高清不卡在线 | 久久综合操 | 精品国产一区二区三区不卡 | 久久99国产精品免费网站 | 三级午夜片 | 国产在线999 | 久久电影日韩 | 亚洲91精品 | 亚洲精品国精品久久99热 | 成人在线视频在线观看 | 亚洲aaa毛片 | 久久久资源 | 在线视频一区二区 | 激情小说 五月 | 日韩毛片精品 | 91免费版成人 | 亚洲精品视频在线观看免费视频 | 日日干日日 | 欧美五月婷婷 | 欧美一区二区三区免费观看 | 日韩在线免费视频 | av在线播放网址 | 国产色资源 | 精品一区二区精品 | 国产成人99久久亚洲综合精品 | 久草精品在线观看 | 亚洲午夜av| 久久婷婷国产色一区二区三区 | 久久露脸国产精品 | 午夜精品成人一区二区三区 | 五月婷婷六月综合 | 国产午夜三级一区二区三桃花影视 | 成年美女黄网站色大片免费看 | av中文天堂 | 国产性xxxx | 国产成人免费 | 香蕉蜜桃视频 | 热久久电影 | 五月婷婷,六月丁香 | 97精品国产97久久久久久粉红 | 婷婷久久五月 | 国产你懂的在线 | 美女在线免费视频 | 欧美在线aaa | 亚洲精品在 | 成人黄色在线 | 欧美一级在线看 | a√天堂中文在线 | 99热99| 伊人夜夜 | 超碰av在线 | 免费黄色av | 久久永久免费 | 亚洲免费一级电影 | 天天干夜夜 | 亚洲情感电影大片 | 97超碰人人澡人人 | 黄色成人av | 一级黄网| 国产麻豆精品一区二区 | 精品国偷自产国产一区 | 国产午夜精品福利视频 | 国产精品一区二区三区在线 | 国产三级国产精品国产专区50 | 久久精品人人做人人综合老师 | 免费三级在线 | 蜜臀av免费一区二区三区 | 亚洲 欧美 精品 | 久久9999久久免费精品国产 | 国产精品 中文字幕 亚洲 欧美 | 最近中文字幕大全中文字幕免费 | 久久这里只有精品视频首页 | 麻花豆传媒mv在线观看网站 | 免费视频一区二区 | 欧美日韩aa | 91精品久久香蕉国产线看观看 | 久久久污| 久久这里精品视频 | av电影一区二区三区 | 婷婷五月情 | 99久久精品无码一区二区毛片 | 狠狠干综合网 | 伊人欧美 | 欧美日韩国产精品一区二区三区 | 日韩精品久久久免费观看夜色 | 日日干天天爽 | 免费中文字幕在线观看 | 日韩中文字幕a | 欧美高清视频不卡网 | 欧美一级黄色片 | 97视频在线观看播放 | 久久精品5 | 91在线观看欧美日韩 | 97视频资源 | 操操操操网 | 亚洲欧洲日韩 | 中文字幕2021 | 久久一二区 | 亚洲综合涩 | 精品久久久久久亚洲综合网站 | 日韩伦理一区二区三区av在线 | 蜜桃视频在线视频 | 日韩网站视频 | 久草影视在线观看 | 伊人五月综合 | 天天射天天添 | 久久不射影院 | 69国产盗摄一区二区三区五区 | 国产精品高清免费在线观看 | 久草爱视频 | 91chinesexxx | 免费高清在线视频一区· | 久久九九国产精品 | 色网站在线免费观看 | 91av福利视频 | 亚洲精品乱码久久久一二三 | 国产一区二区三区四区在线 | 亚洲一级黄色片 | 干狠狠| 992tv在线 | 国产1区2区3区精品美女 | 久久综合操 | 日韩黄色软件 | 香蕉视频日本 | 韩国av在线| 又黄又爽又色无遮挡免费 | 久久久免费精品国产一区二区 | 六月色| 麻豆视频免费播放 | 一区二区视频免费在线观看 | 伊人五月综合 | 免费日p视频 | 日本激情中文字幕 | 久久色视频 | 一区二区视频在线观看免费 | 久久精品爱爱视频 | 91黄色免费看 | 日本女人的性生活视频 | 久久天堂精品视频 | 99久久99久国产黄毛片 | 在线视频在线观看 | 最近中文字幕免费视频 | 99热网站 | 激情久久五月 | 麻豆影音先锋 | 青青久草在线视频 | 欧美日韩在线播放一区 | 高清久久久久久 | 久久久久综合精品福利啪啪 | 国产精品久久久久久久久婷婷 | 精品国产一区二区三区免费 | av中文天堂在线 | 国产综合婷婷 | 成人免费看片98欧美 | 国产中文a| 久久91久久久久麻豆精品 | 91看片淫黄大片91 | 五月婷婷视频 | 欧美极品少妇xbxb性爽爽视频 | 高清在线一区二区 | 国产视频在线免费 | 国产精品女同一区二区三区久久夜 | 在线激情影院一区 | 日韩精品一区二区三区免费观看 | 色婷久久 | 日韩性网站 | 久久福利精品 | 久久久久久国产精品免费 | 97成人精品视频在线观看 | 亚洲h在线播放在线观看h | 亚洲第一av在线播放 | 狠狠色2019综合网 | 久久99在线 | 中文字幕麻豆 | 在线看污网站 | 国产黄在线免费观看 | 国产婷婷 | 伊人国产在线观看 | 丁香九月激情 | 国产精品一区二区三区免费看 | 国产精品欧美一区二区三区不卡 | 亚洲男模gay裸体gay | 九九九九色 | 在线日本看片免费人成视久网 | 欧美日韩国产亚洲乱码字幕 | 国产69久久久欧美一级 | 97超碰超碰久久福利超碰 | 免费黄色在线播放 | 亚洲国产精品免费 | 国产成人在线看 | 91免费在线视频 | 国产精品麻豆视频 | 激情婷婷色| 国产高清av免费在线观看 | 久久99精品久久久久久 | 久久免费视频7 | 婷婷午夜天 | 久久久av电影 | 国产一区二区三区免费观看视频 | 久久超碰免费 | 麻豆传媒视频在线免费观看 | 日韩av成人| 99久久精品国产一区二区成人 | av成人在线看 | 中文字幕人成人 | 97超碰伊人 | 久久看看 | 九九热国产视频 | 97在线免费观看视频 | 亚洲mv大片欧洲mv大片免费 | 91传媒视频在线观看 | 久久国产精品99久久久久 | 88av色| 在线观看中文字幕 | 国产一级免费播放 | 亚洲视频免费视频 | 欧美精品一区二区在线播放 | 91字幕 | 亚洲激色 | 国产欧美久久久精品影院 | 亚洲资源一区 | 天天操天天草 | 视频1区2区 | 日韩免费三区 | 日韩午夜av | 久久综合中文色婷婷 | 国产亚洲视频在线观看 | 午夜久久电影网 | 精品999在线| 色先锋av资源中文字幕 | 国产午夜精品一区二区三区在线观看 | 天天操夜夜操国产精品 | 欧美性黑人| 久久黄色影视 | 久久av在线播放 | 一区二区三区高清不卡 | 天天干夜夜夜操天 | 黄色小视频在线观看免费 | a黄色片| 日日射天天射 | 午夜精品区 | 麻豆视频国产在线观看 | 中文字幕在线观看免费高清完整版 | 久综合网 | 成人91在线观看 | 99久久婷婷国产一区二区三区 | 婷婷色av| 色干综合 | 免费午夜av | 亚洲精品系列 | 国产精品theporn | 麻花天美星空视频 | 久久99精品久久只有精品 | 综合黄色网 | 99婷婷狠狠成为人免费视频 | 午夜三级影院 | 午夜私人影院 | 天天躁天天躁天天躁婷 | 欧美电影黄色 | 免费看黄在线观看 | 天天干天天操天天入 | 麻豆一区二区 | 亚洲日本在线一区 | 国产精品 999 | 久久人91精品久久久久久不卡 | 日韩美女av在线 | 亚洲最大激情中文字幕 | 69国产精品视频免费观看 | 超级碰碰碰碰 | 亚洲国产中文字幕在线 | 久久精品网址 | 久久精品视频免费 | 国产精品ssss在线亚洲 | 四虎国产精品免费 | 高清久久久久久 | 精品久久免费 | 精品久久久久久久久亚洲 | 五月婷婷影院 | 亚洲最新av | 麻豆国产精品永久免费视频 | 成人一级影视 | 日本护士三级少妇三级999 | 91麻豆网站| 亚洲成人中文在线 | 最新中文字幕在线播放 | 国产一区视频在线播放 | 91片黄在线观看 | 精品国产a| 久久一区二区三区国产精品 | 波多野结衣在线中文字幕 | 夜夜爱av | 最近日本韩国中文字幕 | 亚洲综合一区二区精品导航 | 激情电影影院 | 免费看一级黄色 | 在线免费av电影 | 91av手机在线观看 | 91精品视频免费 | 亚洲欧洲精品视频 | 国产精品久久久久久五月尺 | 开心激情综合网 | 99色免费视频 | 久久人人爽视频 | 国产精品av一区二区 | 欧美国产日韩在线观看 | 国产精品视频免费 | 99国产视频在线 | 日韩视频一区二区在线 | 99热在线观看免费 | 精品久久久久免费极品大片 | 国内精品久久久久久久影视麻豆 | 婷婷播播网 | 国产美女精品视频免费观看 | 日本午夜免费福利视频 | 天天艹天天 | 国产一区播放 | 国产午夜不卡 | a视频在线观看免费 | 在线视频成人 | 久久久久久毛片精品免费不卡 | 男女拍拍免费视频 | 国产一级精品视频 | 视频在线一区二区三区 | 成人免费视频网址 | 三级黄色在线 | 欧美性高跟鞋xxxxhd | 一级欧美一级日韩 | 欧美在线1区 | 99久久精品国 | 亚洲第一香蕉视频 | 久久免费片 | 99视频这里有精品 | 久久艹艹 | 成人免费xxxxxx视频 | 国产精品 日本 | 国产精品成人自产拍在线观看 | 国产美女精品在线 | 在线精品亚洲一区二区 | 综合色影院 | 久久免费视频6 | 最近最新最好看中文视频 | 毛片888| 麻花豆传媒mv在线观看 | 黄色av三级在线 | 天天色天天干天天 | 特级aaa毛片 | 日韩国产精品久久久久久亚洲 | 国产91对白在线播 | 91视频在线观看大全 | 久久试看| 成人毛片在线观看 | 亚洲乱码精品久久久久 | 久操97| 日韩精品首页 | 成人少妇影院yyyy | av免费高清观看 | 91九色porny蝌蚪主页 | 99国产在线 | 国产精品久久久久久999 | 6699私人影院 | 国产成人精品国内自产拍免费看 | 成人av一区二区三区 | 在线视频久 | 亚洲免费观看视频 | 亚洲视频网站在线观看 | 亚洲精品久久久蜜臀下载官网 | 欧美久久久久久久久久 | 91精品日韩 | 青春草免费在线视频 | www久久久久 | 欧美一级性生活 | 国产99久久九九精品 | 欧美一进一出抽搐大尺度视频 | 一区二区三区免费在线观看视频 | 久久精品网 | 人人草网站 | 91av免费观看 | 日韩精品久久久免费观看夜色 | 毛片激情永久免费 | 97在线观 | 欧美日韩精品网站 | 999成人免费视频 | 91成人免费观看视频 | 欧美精品久久人人躁人人爽 | 国产成人精品一区二区在线 | 精品一区二区6 | 人人要人人澡人人爽人人dvd | 综合色婷婷 | 精品在线观看国产 | 国产精品毛片久久久久久久久久99999999 | 国产精品久久久久久99 | 国产精品免费在线视频 | 国产美女视频网站 | 欧美肥妇free | 一区二区三区在线免费观看视频 | 国产乱对白刺激视频在线观看女王 | 中文视频在线播放 | 91九色网站 | 超碰人人国产 | 91av原创 | 日韩午夜电影 | 色综合久久久久综合 | 精品视频一区在线观看 | 顶级欧美色妇4khd | 日韩高清不卡在线 | 午夜精品久久久久久久久久久久 | 99久久这里有精品 | 午夜av在线免费 | 久草观看| 狠狠狠狠狠狠干 | 亚洲精品免费在线观看视频 | 日韩av黄 | 久久久久在线 | 国产福利免费看 | 国产精品免费在线播放 | 狠狠色噜噜狠狠 | 国产日韩在线看 | 精品九九久久 | 四虎影视精品成人 | 最近2019中文免费高清视频观看www99 | 国产精品视频久久久 | 日韩av片无码一区二区不卡电影 | 国产精品麻豆免费版 | 国产亚洲综合精品 | 日韩视频区 | 免费中午字幕无吗 | 国产精品乱码一区二区视频 | 精品视频123区在线观看 | 人人爱人人做人人爽 | 天天操天天玩 | 麻豆一精品传二传媒短视频 | 91精品视频在线观看免费 | 91香蕉视频污在线 | 97人人射| 国产免费久久 | 免费看国产曰批40分钟 | 天天干夜夜操视频 | 亚洲在线国产 | 国产色婷婷在线 | 午夜电影一区 | 亚洲欧洲国产视频 | 亚洲精品美女久久久久 | 成年人在线观看网站 | 国产精品第二页 | 99久久婷婷国产综合精品 | www99久久| 天天射天天射 | 狠狠操操网 | 99精品视频在线播放免费 | 久久欧美精品 | 日精品| 国产成人1区| av在线播放中文字幕 | 欧美在线观看视频一区二区 | 麻豆视频免费看 | 国内视频 | 亚洲一级黄色大片 | 中文字幕亚洲欧美日韩2019 | 亚洲综合在线五月 | 久久电影网站中文字幕 | 国产又粗又猛又色又黄视频 | 国产麻豆剧果冻传媒视频播放量 | 久久99国产一区二区三区 | 国产午夜精品一区二区三区欧美 | 少妇bbb | 在线免费色视频 | 天天操操操操操 | 亚洲欧美日本一区二区三区 | 麻豆传媒在线免费看 | 国产精品系列在线观看 | 久久精品欧美一区 | 丁香网五月天 | 一级黄色在线视频 | 久久久免费视频播放 | 黄色官网在线观看 | 欧美韩国在线 | 欧美精品在线视频 | 国产麻豆成人传媒免费观看 | 欧美五月婷婷 | 天天干天天做 | 中文字幕 婷婷 | 91亚洲欧美 | 欧美性护士| 久久成人国产精品一区二区 | 五月天激情视频在线观看 | 天天操天天操天天操天天操天天操 | 九九在线播放 | 色黄www小说 | 97成人在线视频 | 成人午夜毛片 | 精品一区二区av | 一级久久精品 | 成人av电影免费在线观看 | 91丨九色丨91啦蝌蚪老版 | 国产美女免费视频 | 久久久精品国产免费观看同学 | 日韩激情视频在线 | 欧美污污网站 | 欧美视频在线观看免费网址 | 色婷婷在线视频 | 性色视频在线 | 中文字幕资源网 | 欧美大片在线看免费观看 | 亚洲精品视频播放 | 国产精品99久久久久久宅男 | 91少妇精拍在线播放 | 91精品中文字幕 | 国产亚洲精品美女久久 | 国产成人精品亚洲 | 欧美激情精品久久久久久免费 | 亚洲成人黄色在线 | 麻豆高清免费国产一区 | 国语精品免费视频 | 韩国在线一区二区 | 91丨九色丨勾搭 | 成人a在线观看高清电影 | 亚洲欧洲美洲av | 黄色一级免费电影 | 狠狠干夜夜操 | 亚洲涩涩网 | 日韩免费中文 | 我爱av激情网| av在线之家电影网站 | 99婷婷 | 特级西西444www高清大视频 | 免费观看一级成人毛片 | 欧美日韩精品在线播放 | 在线视频精品 | 亚洲少妇xxxx | 婷婷色五| 国产xx视频 | 欧美视频99 | 69国产精品视频 | 久久这里只有精品首页 | 丰满少妇对白在线偷拍 | 亚洲 欧美变态 另类 综合 | 日韩一区二区三区免费视频 | av免费在线看网站 | 色天天综合网 | 久久精品看 | 成人免费观看视频大全 | 久久国产剧场电影 | 91看片淫黄大片在线播放 | 超碰在线公开免费 |