国产无遮挡裸体免费直播视频,久久精品国产蜜臀av,动漫在线视频一区二区,欧亚日韩一区二区三区,久艹在线 免费视频,国产精品美女网站免费,正在播放 97超级视频在线观看,斗破苍穹年番在线观看免费,51最新乱码中文字幕

基于spring boot 的配置參考大全(推薦)

 更新時(shí)間:2017年09月04日 14:31:04   作者:Think-007  
下面小編就為大家?guī)?lái)一篇基于spring boot 的配置參考大全(推薦)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧

如下所示:

# ===================================================================
# COMMON SPRING BOOT PROPERTIES
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application. ^^^
# ===================================================================


# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------

# BANNER
banner.charset=UTF-8 # Banner file encoding.
banner.location=classpath:banner.txt # Banner file location.
banner.image.location=classpath:banner.gif # Banner image file location (jpg/png can also be used).
banner.image.width= # Width of the banner image in chars (default 76)
banner.image.height= # Height of the banner image in chars (default based on image height)
banner.image.margin= # Left hand image margin in chars (default 2)
banner.image.invert= # If images should be inverted for dark terminal themes (default false)

# LOGGING
logging.config= # Location of the logging configuration file. For instance `classpath:logback.xml` for Logback
logging.exception-conversion-word=%wEx # Conversion word used when logging exceptions.
logging.file= # Log file name. For instance `myapp.log`
logging.level.*= # Log levels severity mapping. For instance `logging.level.org.springframework=DEBUG`
logging.path= # Location of the log file. For instance `/var/log`
logging.pattern.console= # Appender pattern for output to the console. Only supported with the default logback setup.
logging.pattern.file= # Appender pattern for output to the file. Only supported with the default logback setup.
logging.pattern.level= # Appender pattern for log level (default %5p). Only supported with the default logback setup.
logging.register-shutdown-hook=false # Register a shutdown hook for the logging system when it is initialized.

# AOP
spring.aop.auto=true # Add @EnableAspectJAutoProxy.
spring.aop.proxy-target-class=false # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).

# IDENTITY (ContextIdApplicationContextInitializer)
spring.application.index= # Application index.
spring.application.name= # Application name.

# ADMIN (SpringApplicationAdminJmxAutoConfiguration)
spring.application.admin.enabled=false # Enable admin features for the application.
spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication # JMX name of the application admin MBean.

# AUTO-CONFIGURATION
spring.autoconfigure.exclude= # Auto-configuration classes to exclude.

# SPRING CORE
spring.beaninfo.ignore=true # Skip search of BeanInfo classes.

# SPRING CACHE (CacheProperties)
spring.cache.cache-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.
spring.cache.caffeine.spec= # The spec to use to create caches. Check CaffeineSpec for more details on the spec format.
spring.cache.couchbase.expiration=0 # Entry expiration in milliseconds. By default the entries never expire.
spring.cache.ehcache.config= # The location of the configuration file to use to initialize EhCache.
spring.cache.guava.spec= # The spec to use to create caches. Check CacheBuilderSpec for more details on the spec format.
spring.cache.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.
spring.cache.infinispan.config= # The location of the configuration file to use to initialize Infinispan.
spring.cache.jcache.config= # The location of the configuration file to use to initialize the cache manager.
spring.cache.jcache.provider= # Fully qualified name of the CachingProvider implementation to use to retrieve the JSR-107 compliant cache manager. Only needed if more than one JSR-107 implementation is available on the classpath.
spring.cache.type= # Cache type, auto-detected according to the environment by default.

# SPRING CONFIG - using environment property only (ConfigFileApplicationListener)
spring.config.location= # Config file locations.
spring.config.name=application # Config file name.

# HAZELCAST (HazelcastProperties)
spring.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.

# PROJECT INFORMATION (ProjectInfoProperties)
spring.info.build.location=classpath:META-INF/build-info.properties # Location of the generated build-info.properties file.
spring.info.git.location=classpath:git.properties # Location of the generated git.properties file.

# JMX
spring.jmx.default-domain= # JMX domain name.
spring.jmx.enabled=true # Expose management beans to the JMX domain.
spring.jmx.server=mbeanServer # MBeanServer bean name.

# Email (MailProperties)
spring.mail.default-encoding=UTF-8 # Default MimeMessage encoding.
spring.mail.host= # SMTP server host. For instance `smtp.example.com`
spring.mail.jndi-name= # Session JNDI name. When set, takes precedence to others mail settings.
spring.mail.password= # Login password of the SMTP server.
spring.mail.port= # SMTP server port.
spring.mail.properties.*= # Additional JavaMail session properties.
spring.mail.protocol=smtp # Protocol used by the SMTP server.
spring.mail.test-connection=false # Test that the mail server is available on startup.
spring.mail.username= # Login user of the SMTP server.

# APPLICATION SETTINGS (SpringApplication)
spring.main.banner-mode=console # Mode used to display the banner when the application runs.
spring.main.sources= # Sources (class name, package name or XML resource location) to include in the ApplicationContext.
spring.main.web-environment= # Run the application in a web environment (auto-detected by default).

# FILE ENCODING (FileEncodingApplicationListener)
spring.mandatory-file-encoding= # Expected character encoding the application must use.

# INTERNATIONALIZATION (MessageSourceAutoConfiguration)
spring.messages.always-use-message-format=false # Set whether to always apply the MessageFormat rules, parsing even messages without arguments.
spring.messages.basename=messages # Comma-separated list of basenames, each following the ResourceBundle convention.
spring.messages.cache-seconds=-1 # Loaded resource bundle files cache expiration, in seconds. When set to -1, bundles are cached forever.
spring.messages.encoding=UTF-8 # Message bundles encoding.
spring.messages.fallback-to-system-locale=true # Set whether to fall back to the system Locale if no files for a specific Locale have been found.

# OUTPUT
spring.output.ansi.enabled=detect # Configure the ANSI output (can be "detect", "always", "never").

# PID FILE (ApplicationPidFileWriter)
spring.pid.fail-on-write-error= # Fail if ApplicationPidFileWriter is used but it cannot write the PID file.
spring.pid.file= # Location of the PID file to write (if ApplicationPidFileWriter is used).

# PROFILES
spring.profiles.active= # Comma-separated list of active profiles.
spring.profiles.include= # Unconditionally activate the specified comma separated profiles.

# SENDGRID (SendGridAutoConfiguration)
spring.sendgrid.api-key= # SendGrid api key (alternative to username/password)
spring.sendgrid.username= # SendGrid account username
spring.sendgrid.password= # SendGrid account password
spring.sendgrid.proxy.host= # SendGrid proxy host
spring.sendgrid.proxy.port= # SendGrid proxy port


# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------

# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.address= # Network address to which the server should bind to.
server.compression.enabled=false # If response compression is enabled.
server.compression.excluded-user-agents= # List of user-agents to exclude from compression.
server.compression.mime-types= # Comma-separated list of MIME types that should be compressed. For instance `text/html,text/css,application/json`
server.compression.min-response-size= # Minimum response size that is required for compression to be performed. For instance 2048
server.connection-timeout= # Time in milliseconds that connectors will wait for another HTTP request before closing the connection. When not set, the connector's container-specific default will be used. Use a value of -1 to indicate no (i.e. infinite) timeout.
server.context-parameters.*= # Servlet context init parameters. For instance `server.context-parameters.a=alpha`
server.context-path= # Context path of the application.
server.display-name=application # Display name of the application.
server.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
server.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
server.error.include-stacktrace=never # When to include a "stacktrace" attribute.
server.error.path=/error # Path of the error controller.
server.error.whitelabel.enabled=true # Enable the default error page displayed in browsers in case of a server error.
server.jetty.acceptors= # Number of acceptor threads to use.
server.jetty.selectors= # Number of selector threads to use.
server.jsp-servlet.class-name=org.apache.jasper.servlet.JspServlet # The class name of the JSP servlet.
server.jsp-servlet.init-parameters.*= # Init parameters used to configure the JSP servlet
server.jsp-servlet.registered=true # Whether or not the JSP servlet is registered
server.port=8080 # Server HTTP port.
server.server-header= # Value to use for the Server response header (no header is sent if empty)
server.servlet-path=/ # Path of the main dispatcher servlet.
server.use-forward-headers= # If X-Forwarded-* headers should be applied to the HttpRequest.
server.session.cookie.comment= # Comment for the session cookie.
server.session.cookie.domain= # Domain for the session cookie.
server.session.cookie.http-only= # "HttpOnly" flag for the session cookie.
server.session.cookie.max-age= # Maximum age of the session cookie in seconds.
server.session.cookie.name= # Session cookie name.
server.session.cookie.path= # Path of the session cookie.
server.session.cookie.secure= # "Secure" flag for the session cookie.
server.session.persistent=false # Persist session data between restarts.
server.session.store-dir= # Directory used to store session data.
server.session.timeout= # Session timeout in seconds.
server.session.tracking-modes= # Session tracking modes (one or more of the following: "cookie", "url", "ssl").
server.ssl.ciphers= # Supported SSL ciphers.
server.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store.
server.ssl.enabled= # Enable SSL support.
server.ssl.enabled-protocols= # Enabled SSL protocols.
server.ssl.key-alias= # Alias that identifies the key in the key store.
server.ssl.key-password= # Password used to access the key in the key store.
server.ssl.key-store= # Path to the key store that holds the SSL certificate (typically a jks file).
server.ssl.key-store-password= # Password used to access the key store.
server.ssl.key-store-provider= # Provider for the key store.
server.ssl.key-store-type= # Type of the key store.
server.ssl.protocol=TLS # SSL protocol to use.
server.ssl.trust-store= # Trust store that holds SSL certificates.
server.ssl.trust-store-password= # Password used to access the trust store.
server.ssl.trust-store-provider= # Provider for the trust store.
server.ssl.trust-store-type= # Type of the trust store.
server.tomcat.accesslog.directory=logs # Directory in which log files are created. Can be relative to the tomcat base dir or absolute.
server.tomcat.accesslog.enabled=false # Enable access log.
server.tomcat.accesslog.pattern=common # Format pattern for access logs.
server.tomcat.accesslog.prefix=access_log # Log file name prefix.
server.tomcat.accesslog.rename-on-rotate=false # Defer inclusion of the date stamp in the file name until rotate time.
server.tomcat.accesslog.suffix=.log # Log file name suffix.
server.tomcat.background-processor-delay=30 # Delay in seconds between the invocation of backgroundProcess methods.
server.tomcat.basedir= # Tomcat base directory. If not specified a temporary directory will be used.
server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # regular expression matching trusted IP addresses.
server.tomcat.max-threads=0 # Maximum amount of worker threads.
server.tomcat.min-spare-threads=0 # Minimum amount of worker threads.
server.tomcat.port-header=X-Forwarded-Port # Name of the HTTP header used to override the original port value.
server.tomcat.protocol-header= # Header that holds the incoming protocol, usually named "X-Forwarded-Proto".
server.tomcat.protocol-header-https-value=https # Value of the protocol header that indicates that the incoming request uses SSL.
server.tomcat.redirect-context-root= # Whether requests to the context root should be redirected by appending a / to the path.
server.tomcat.remote-ip-header= # Name of the http header from which the remote ip is extracted. For instance `X-FORWARDED-FOR`
server.tomcat.uri-encoding=UTF-8 # Character encoding to use to decode the URI.
server.undertow.accesslog.dir= # Undertow access log directory.
server.undertow.accesslog.enabled=false # Enable access log.
server.undertow.accesslog.pattern=common # Format pattern for access logs.
server.undertow.buffer-size= # Size of each buffer in bytes.
server.undertow.buffers-per-region= # Number of buffer per region.
server.undertow.direct-buffers= # Allocate buffers outside the Java heap.
server.undertow.io-threads= # Number of I/O threads to create for the worker.
server.undertow.worker-threads= # Number of worker threads.

# FREEMARKER (FreeMarkerAutoConfiguration)
spring.freemarker.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.freemarker.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.freemarker.cache=false # Enable template caching.
spring.freemarker.charset=UTF-8 # Template encoding.
spring.freemarker.check-template-location=true # Check that the templates location exists.
spring.freemarker.content-type=text/html # Content-Type value.
spring.freemarker.enabled=true # Enable MVC view resolution for this technology.
spring.freemarker.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
spring.freemarker.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.freemarker.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.freemarker.prefer-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.
spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.
spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.freemarker.settings.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.
spring.freemarker.suffix= # Suffix that gets appended to view names when building a URL.
spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.
spring.freemarker.view-names= # White list of view names that can be resolved.

# GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)
spring.groovy.template.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.groovy.template.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.groovy.template.cache= # Enable template caching.
spring.groovy.template.charset=UTF-8 # Template encoding.
spring.groovy.template.check-template-location=true # Check that the templates location exists.
spring.groovy.template.configuration.*= # See GroovyMarkupConfigurer
spring.groovy.template.content-type=test/html # Content-Type value.
spring.groovy.template.enabled=true # Enable MVC view resolution for this technology.
spring.groovy.template.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
spring.groovy.template.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.groovy.template.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.groovy.template.prefix= # Prefix that gets prepended to view names when building a URL.
spring.groovy.template.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.groovy.template.resource-loader-path=classpath:/templates/ # Template path.
spring.groovy.template.suffix=.tpl # Suffix that gets appended to view names when building a URL.
spring.groovy.template.view-names= # White list of view names that can be resolved.

# SPRING HATEOAS (HateoasProperties)
spring.hateoas.use-hal-as-default-json-media-type=true # Specify if application/hal+json responses should be sent to requests that accept application/json.

# HTTP message conversion
spring.http.converters.preferred-json-mapper=jackson # Preferred JSON mapper to use for HTTP message conversion. Set to "gson" to force the use of Gson when both it and Jackson are on the classpath.

# HTTP encoding (HttpEncodingProperties)
spring.http.encoding.charset=UTF-8 # Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.
spring.http.encoding.enabled=true # Enable http encoding support.
spring.http.encoding.force= # Force the encoding to the configured charset on HTTP requests and responses.
spring.http.encoding.force-request= # Force the encoding to the configured charset on HTTP requests. Defaults to true when "force" has not been specified.
spring.http.encoding.force-response= # Force the encoding to the configured charset on HTTP responses.

# MULTIPART (MultipartProperties)
spring.http.multipart.enabled=true # Enable support of multi-part uploads.
spring.http.multipart.file-size-threshold=0 # Threshold after which files will be written to disk. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
spring.http.multipart.location= # Intermediate location of uploaded files.
spring.http.multipart.max-file-size=1Mb # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
spring.http.multipart.max-request-size=10Mb # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.

# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.
spring.jackson.default-property-inclusion= # Controls the inclusion of properties during serialization.
spring.jackson.deserialization.*= # Jackson on/off features that affect the way Java objects are deserialized.
spring.jackson.generator.*= # Jackson on/off features for generators.
spring.jackson.joda-date-time-format= # Joda date time format string. If not configured, "date-format" will be used as a fallback if it is configured with a format string.
spring.jackson.locale= # Locale used for formatting.
spring.jackson.mapper.*= # Jackson general purpose on/off features.
spring.jackson.parser.*= # Jackson on/off features for parsers.
spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.
spring.jackson.serialization.*= # Jackson on/off features that affect the way Java objects are serialized.
spring.jackson.serialization-inclusion= # Controls the inclusion of properties during serialization. Configured with one of the values in Jackson's JsonInclude.Include enumeration.
spring.jackson.time-zone= # Time zone used when formatting dates. For instance `America/Los_Angeles`

# JERSEY (JerseyProperties)
spring.jersey.application-path= # Path that serves as the base URI for the application. Overrides the value of "@ApplicationPath" if specified.
spring.jersey.filter.order=0 # Jersey filter chain order.
spring.jersey.init.*= # Init parameters to pass to Jersey via the servlet or filter.
spring.jersey.servlet.load-on-startup=-1 # Load on startup priority of the Jersey servlet.
spring.jersey.type=servlet # Jersey integration type. Can be either "servlet" or "filter".

# SPRING MOBILE DEVICE VIEWS (DeviceDelegatingViewResolverAutoConfiguration)
spring.mobile.devicedelegatingviewresolver.enable-fallback=false # Enable support for fallback resolution.
spring.mobile.devicedelegatingviewresolver.enabled=false # Enable device view resolver.
spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/ # Prefix that gets prepended to view names for mobile devices.
spring.mobile.devicedelegatingviewresolver.mobile-suffix= # Suffix that gets appended to view names for mobile devices.
spring.mobile.devicedelegatingviewresolver.normal-prefix= # Prefix that gets prepended to view names for normal devices.
spring.mobile.devicedelegatingviewresolver.normal-suffix= # Suffix that gets appended to view names for normal devices.
spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/ # Prefix that gets prepended to view names for tablet devices.
spring.mobile.devicedelegatingviewresolver.tablet-suffix= # Suffix that gets appended to view names for tablet devices.

# SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)
spring.mobile.sitepreference.enabled=true # Enable SitePreferenceHandler.

# MUSTACHE TEMPLATES (MustacheAutoConfiguration)
spring.mustache.allow-request-override= # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.mustache.allow-session-override= # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.mustache.cache= # Enable template caching.
spring.mustache.charset= # Template encoding.
spring.mustache.check-template-location= # Check that the templates location exists.
spring.mustache.content-type= # Content-Type value.
spring.mustache.enabled= # Enable MVC view resolution for this technology.
spring.mustache.expose-request-attributes= # Set whether all request attributes should be added to the model prior to merging with the template.
spring.mustache.expose-session-attributes= # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.mustache.expose-spring-macro-helpers= # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.mustache.prefix=classpath:/templates/ # Prefix to apply to template names.
spring.mustache.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.mustache.suffix=.html # Suffix to apply to template names.
spring.mustache.view-names= # White list of view names that can be resolved.

# SPRING MVC (WebMvcProperties)
spring.mvc.async.request-timeout= # Amount of time (in milliseconds) before asynchronous request handling times out.
spring.mvc.date-format= # Date format to use. For instance `dd/MM/yyyy`.
spring.mvc.dispatch-trace-request=false # Dispatch TRACE requests to the FrameworkServlet doService method.
spring.mvc.dispatch-options-request=true # Dispatch OPTIONS requests to the FrameworkServlet doService method.
spring.mvc.favicon.enabled=true # Enable resolution of favicon.ico.
spring.mvc.ignore-default-model-on-redirect=true # If the content of the "default" model should be ignored during redirect scenarios.
spring.mvc.locale= # Locale to use. By default, this locale is overridden by the "Accept-Language" header.
spring.mvc.locale-resolver=accept-header # Define how the locale should be resolved.
spring.mvc.log-resolved-exception=false # Enable warn logging of exceptions resolved by a "HandlerExceptionResolver".
spring.mvc.media-types.*= # Maps file extensions to media types for content negotiation.
spring.mvc.message-codes-resolver-format= # Formatting strategy for message codes. For instance `PREFIX_ERROR_CODE`.
spring.mvc.servlet.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
spring.mvc.static-path-pattern=/** # Path pattern used for static resources.
spring.mvc.throw-exception-if-no-handler-found=false # If a "NoHandlerFoundException" should be thrown if no Handler was found to process a request.
spring.mvc.view.prefix= # Spring MVC view prefix.
spring.mvc.view.suffix= # Spring MVC view suffix.

# SPRING RESOURCES HANDLING (ResourceProperties)
spring.resources.add-mappings=true # Enable default resource handling.
spring.resources.cache-period= # Cache period for the resources served by the resource handler, in seconds.
spring.resources.chain.cache=true # Enable caching in the Resource chain.
spring.resources.chain.enabled= # Enable the Spring Resource Handling chain. Disabled by default unless at least one strategy has been enabled.
spring.resources.chain.gzipped=false # Enable resolution of already gzipped resources.
spring.resources.chain.html-application-cache=false # Enable HTML5 application cache manifest rewriting.
spring.resources.chain.strategy.content.enabled=false # Enable the content Version Strategy.
spring.resources.chain.strategy.content.paths=/** # Comma-separated list of patterns to apply to the Version Strategy.
spring.resources.chain.strategy.fixed.enabled=false # Enable the fixed Version Strategy.
spring.resources.chain.strategy.fixed.paths=/** # Comma-separated list of patterns to apply to the Version Strategy.
spring.resources.chain.strategy.fixed.version= # Version string to use for the Version Strategy.
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.

# SPRING SESSION (SessionProperties)
spring.session.hazelcast.map-name=spring:session:sessions # Name of the map used to store sessions.
spring.session.jdbc.initializer.enabled=true # Create the required session tables on startup if necessary.
spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
spring.session.jdbc.table-name=SPRING_SESSION # Name of database table used to store sessions.
spring.session.mongo.collection-name=sessions # Collection name used to store sessions.
spring.session.redis.flush-mode= # Flush mode for the Redis sessions.
spring.session.redis.namespace= # Namespace for keys used to store sessions.
spring.session.store-type= # Session store type.

# SPRING SOCIAL (SocialWebAutoConfiguration)
spring.social.auto-connection-views=false # Enable the connection status view for supported providers.

# SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)
spring.social.facebook.app-id= # your application's Facebook App ID
spring.social.facebook.app-secret= # your application's Facebook App Secret

# SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)
spring.social.linkedin.app-id= # your application's LinkedIn App ID
spring.social.linkedin.app-secret= # your application's LinkedIn App Secret

# SPRING SOCIAL TWITTER (TwitterAutoConfiguration)
spring.social.twitter.app-id= # your application's Twitter App ID
spring.social.twitter.app-secret= # your application's Twitter App Secret

# THYMELEAF (ThymeleafAutoConfiguration)
spring.thymeleaf.cache=true # Enable template caching.
spring.thymeleaf.check-template-location=true # Check that the templates location exists.
spring.thymeleaf.content-type=text/html # Content-Type value.
spring.thymeleaf.enabled=true # Enable MVC Thymeleaf view resolution.
spring.thymeleaf.encoding=UTF-8 # Template encoding.
spring.thymeleaf.excluded-view-names= # Comma-separated list of view names that should be excluded from resolution.
spring.thymeleaf.mode=HTML5 # Template mode to be applied to templates. See also StandardTemplateModeHandlers.
spring.thymeleaf.prefix=classpath:/templates/ # Prefix that gets prepended to view names when building a URL.
spring.thymeleaf.suffix=.html # Suffix that gets appended to view names when building a URL.
spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.
spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.

# VELOCITY TEMPLATES (VelocityAutoConfiguration)
spring.velocity.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.velocity.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.velocity.cache= # Enable template caching.
spring.velocity.charset=UTF-8 # Template encoding.
spring.velocity.check-template-location=true # Check that the templates location exists.
spring.velocity.content-type=text/html # Content-Type value.
spring.velocity.date-tool-attribute= # Name of the DateTool helper object to expose in the Velocity context of the view.
spring.velocity.enabled=true # Enable MVC view resolution for this technology.
spring.velocity.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
spring.velocity.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.velocity.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.velocity.number-tool-attribute= # Name of the NumberTool helper object to expose in the Velocity context of the view.
spring.velocity.prefer-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.
spring.velocity.prefix= # Prefix that gets prepended to view names when building a URL.
spring.velocity.properties.*= # Additional velocity properties.
spring.velocity.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.velocity.resource-loader-path=classpath:/templates/ # Template path.
spring.velocity.suffix=.vm # Suffix that gets appended to view names when building a URL.
spring.velocity.toolbox-config-location= # Velocity Toolbox config location. For instance `/WEB-INF/toolbox.xml`
spring.velocity.view-names= # White list of view names that can be resolved.

# SPRING WEB SERVICES (WebServicesProperties)
spring.webservices.path=/services # Path that serves as the base URI for the services.
spring.webservices.servlet.init= # Servlet init parameters to pass to Spring Web Services.
spring.webservices.servlet.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.

 

# ----------------------------------------
# SECURITY PROPERTIES
# ----------------------------------------
# SECURITY (SecurityProperties)
security.basic.authorize-mode=role # Security authorize mode to apply.
security.basic.enabled=true # Enable basic authentication.
security.basic.path=/** # Comma-separated list of paths to secure.
security.basic.realm=Spring # HTTP basic realm name.
security.enable-csrf=false # Enable Cross Site Request Forgery support.
security.filter-order=0 # Security filter chain order.
security.filter-dispatcher-types=ASYNC, FORWARD, INCLUDE, REQUEST # Security filter chain dispatcher types.
security.headers.cache=true # Enable cache control HTTP headers.
security.headers.content-type=true # Enable "X-Content-Type-Options" header.
security.headers.frame=true # Enable "X-Frame-Options" header.
security.headers.hsts= # HTTP Strict Transport Security (HSTS) mode (none, domain, all).
security.headers.xss=true # Enable cross site scripting (XSS) protection.
security.ignored= # Comma-separated list of paths to exclude from the default secured paths.
security.require-ssl=false # Enable secure channel for all requests.
security.sessions=stateless # Session creation policy (always, never, if_required, stateless).
security.user.name=user # Default user name.
security.user.password= # Password for the default user name. A random password is logged on startup by default.
security.user.role=USER # Granted roles for the default user name.

# SECURITY OAUTH2 CLIENT (OAuth2ClientProperties
security.oauth2.client.client-id= # OAuth2 client id.
security.oauth2.client.client-secret= # OAuth2 client secret. A random secret is generated by default

# SECURITY OAUTH2 RESOURCES (ResourceServerProperties
security.oauth2.resource.id= # Identifier of the resource.
security.oauth2.resource.jwt.key-uri= # The URI of the JWT token. Can be set if the value is not available and the key is public.
security.oauth2.resource.jwt.key-value= # The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.
security.oauth2.resource.prefer-token-info=true # Use the token info, can be set to false to use the user info.
security.oauth2.resource.service-id=resource #
security.oauth2.resource.token-info-uri= # URI of the token decoding endpoint.
security.oauth2.resource.token-type= # The token type to send when using the userInfoUri.
security.oauth2.resource.user-info-uri= # URI of the user endpoint.

# SECURITY OAUTH2 SSO (OAuth2SsoProperties
security.oauth2.sso.filter-order= # Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter
security.oauth2.sso.login-path=/login # Path to the login page, i.e. the one that triggers the redirect to the OAuth2 Authorization Server


# ----------------------------------------
# DATA PROPERTIES
# ----------------------------------------

# FLYWAY (FlywayProperties)
flyway.baseline-description= #
flyway.baseline-version=1 # version to start migration
flyway.baseline-on-migrate= #
flyway.check-location=false # Check that migration scripts location exists.
flyway.clean-on-validation-error= #
flyway.enabled=true # Enable flyway.
flyway.encoding= #
flyway.ignore-failed-future-migration= #
flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
flyway.locations=classpath:db/migration # locations of migrations scripts
flyway.out-of-order= #
flyway.password= # JDBC password if you want Flyway to create its own DataSource
flyway.placeholder-prefix= #
flyway.placeholder-replacement= #
flyway.placeholder-suffix= #
flyway.placeholders.*= #
flyway.schemas= # schemas to update
flyway.sql-migration-prefix=V #
flyway.sql-migration-separator= #
flyway.sql-migration-suffix=.sql #
flyway.table= #
flyway.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
flyway.user= # Login user of the database to migrate.
flyway.validate-on-migrate= #

# LIQUIBASE (LiquibaseProperties)
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml # Change log configuration path.
liquibase.check-change-log-location=true # Check the change log location exists.
liquibase.contexts= # Comma-separated list of runtime contexts to use.
liquibase.default-schema= # Default database schema.
liquibase.drop-first=false # Drop the database schema first.
liquibase.enabled=true # Enable liquibase support.
liquibase.labels= # Comma-separated list of runtime labels to use.
liquibase.parameters.*= # Change log parameters.
liquibase.password= # Login password of the database to migrate.
liquibase.rollback-file= # File to which rollback SQL will be written when an update is performed.
liquibase.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
liquibase.user= # Login user of the database to migrate.

# COUCHBASE (CouchbaseProperties)
spring.couchbase.bootstrap-hosts= # Couchbase nodes (host or IP address) to bootstrap from.
spring.couchbase.bucket.name=default # Name of the bucket to connect to.
spring.couchbase.bucket.password= # Password of the bucket.
spring.couchbase.env.endpoints.key-value=1 # Number of sockets per node against the Key/value service.
spring.couchbase.env.endpoints.query=1 # Number of sockets per node against the Query (N1QL) service.
spring.couchbase.env.endpoints.view=1 # Number of sockets per node against the view service.
spring.couchbase.env.ssl.enabled= # Enable SSL support. Enabled automatically if a "keyStore" is provided unless specified otherwise.
spring.couchbase.env.ssl.key-store= # Path to the JVM key store that holds the certificates.
spring.couchbase.env.ssl.key-store-password= # Password used to access the key store.
spring.couchbase.env.timeouts.connect=5000 # Bucket connections timeout in milliseconds.
spring.couchbase.env.timeouts.key-value=2500 # Blocking operations performed on a specific key timeout in milliseconds.
spring.couchbase.env.timeouts.query=7500 # N1QL query operations timeout in milliseconds.
spring.couchbase.env.timeouts.socket-connect=1000 # Socket connect connections timeout in milliseconds.
spring.couchbase.env.timeouts.view=7500 # Regular and geospatial view operations timeout in milliseconds.

# DAO (PersistenceExceptionTranslationAutoConfiguration)
spring.dao.exceptiontranslation.enabled=true # Enable the PersistenceExceptionTranslationPostProcessor.

# CASSANDRA (CassandraProperties)
spring.data.cassandra.cluster-name= # Name of the Cassandra cluster.
spring.data.cassandra.compression= # Compression supported by the Cassandra binary protocol.
spring.data.cassandra.connect-timeout-millis= # Socket option: connection time out.
spring.data.cassandra.consistency-level= # Queries consistency level.
spring.data.cassandra.contact-points=localhost # Comma-separated list of cluster node addresses.
spring.data.cassandra.fetch-size= # Queries default fetch size.
spring.data.cassandra.keyspace-name= # Keyspace name to use.
spring.data.cassandra.load-balancing-policy= # Class name of the load balancing policy.
spring.data.cassandra.port= # Port of the Cassandra server.
spring.data.cassandra.password= # Login password of the server.
spring.data.cassandra.read-timeout-millis= # Socket option: read time out.
spring.data.cassandra.reconnection-policy= # Reconnection policy class.
spring.data.cassandra.retry-policy= # Class name of the retry policy.
spring.data.cassandra.serial-consistency-level= # Queries serial consistency level.
spring.data.cassandra.schema-action=none # Schema action to take at startup.
spring.data.cassandra.ssl=false # Enable SSL support.
spring.data.cassandra.username= # Login user of the server.

# DATA COUCHBASE (CouchbaseDataProperties)
spring.data.couchbase.auto-index=false # Automatically create views and indexes.
spring.data.couchbase.consistency=read-your-own-writes # Consistency to apply by default on generated queries.
spring.data.couchbase.repositories.enabled=true # Enable Couchbase repositories.

# ELASTICSEARCH (ElasticsearchProperties)
spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name.
spring.data.elasticsearch.cluster-nodes= # Comma-separated list of cluster node addresses. If not specified, starts a client node.
spring.data.elasticsearch.properties.*= # Additional properties used to configure the client.
spring.data.elasticsearch.repositories.enabled=true # Enable Elasticsearch repositories.

# MONGODB (MongoProperties)
spring.data.mongodb.authentication-database= # Authentication database name.
spring.data.mongodb.database=test # Database name.
spring.data.mongodb.field-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.
spring.data.mongodb.grid-fs-database= # GridFS database name.
spring.data.mongodb.host=localhost # Mongo server host.
spring.data.mongodb.password= # Login password of the mongo server.
spring.data.mongodb.port=27017 # Mongo server port.
spring.data.mongodb.repositories.enabled=true # Enable Mongo repositories.
spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. When set, host and port are ignored.
spring.data.mongodb.username= # Login user of the mongo server.

# DATA REDIS
spring.data.redis.repositories.enabled=true # Enable Redis repositories.

# NEO4J (Neo4jProperties)
spring.data.neo4j.compiler= # Compiler to use.
spring.data.neo4j.embedded.enabled=true # Enable embedded mode if the embedded driver is available.
spring.data.neo4j.password= # Login password of the server.
spring.data.neo4j.repositories.enabled=true # Enable Neo4j repositories.
spring.data.neo4j.session.scope=singleton # Scope (lifetime) of the session.
spring.data.neo4j.uri= # URI used by the driver. Auto-detected by default.
spring.data.neo4j.username= # Login user of the server.

# DATA REST (RepositoryRestProperties)
spring.data.rest.base-path= # Base path to be used by Spring Data REST to expose repository resources.
spring.data.rest.default-page-size= # Default size of pages.
spring.data.rest.enable-enum-translation= # Enable enum value translation via the Spring Data REST default resource bundle.
spring.data.rest.limit-param-name= # Name of the URL query string parameter that indicates how many results to return at once.
spring.data.rest.max-page-size= # Maximum size of pages.
spring.data.rest.page-param-name= # Name of the URL query string parameter that indicates what page to return.
spring.data.rest.return-body-on-create= # Return a response body after creating an entity.
spring.data.rest.return-body-on-update= # Return a response body after updating an entity.
spring.data.rest.sort-param-name= # Name of the URL query string parameter that indicates what direction to sort results.

# SOLR (SolrProperties)
spring.data.solr.host=http://127.0.0.1:8983/solr # Solr host. Ignored if "zk-host" is set.
spring.data.solr.repositories.enabled=true # Enable Solr repositories.
spring.data.solr.zk-host= # ZooKeeper host address in the form HOST:PORT.

# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.continue-on-error=false # Do not stop if an error occurs while initializing the database.
spring.datasource.data= # Data (DML) script resource reference.
spring.datasource.data-username= # User of the database to execute DML scripts (if different).
spring.datasource.data-password= # Password of the database to execute DML scripts (if different).
spring.datasource.dbcp.*= # Commons DBCP specific settings
spring.datasource.dbcp2.*= # Commons DBCP2 specific settings
spring.datasource.driver-class-name= # Fully qualified name of the JDBC driver. Auto-detected based on the URL by default.
spring.datasource.hikari.*= # Hikari specific settings
spring.datasource.initialize=true # Populate the database using 'data.sql'.
spring.datasource.jmx-enabled=false # Enable JMX support (if provided by the underlying pool).
spring.datasource.jndi-name= # JNDI location of the datasource. Class, url, username & password are ignored when set.
spring.datasource.name=testdb # Name of the datasource.
spring.datasource.password= # Login password of the database.
spring.datasource.platform=all # Platform to use in the schema resource (schema-${platform}.sql).
spring.datasource.schema= # Schema (DDL) script resource reference.
spring.datasource.schema-username= # User of the database to execute DDL scripts (if different).
spring.datasource.schema-password= # Password of the database to execute DDL scripts (if different).
spring.datasource.separator=; # Statement separator in SQL initialization scripts.
spring.datasource.sql-script-encoding= # SQL scripts encoding.
spring.datasource.tomcat.*= # Tomcat datasource specific settings
spring.datasource.type= # Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath.
spring.datasource.url= # JDBC url of the database.
spring.datasource.username=

# JEST (Elasticsearch HTTP client) (JestProperties)
spring.elasticsearch.jest.connection-timeout=3000 # Connection timeout in milliseconds.
spring.elasticsearch.jest.password= # Login password.
spring.elasticsearch.jest.proxy.host= # Proxy host the HTTP client should use.
spring.elasticsearch.jest.proxy.port= # Proxy port the HTTP client should use.
spring.elasticsearch.jest.read-timeout=3000 # Read timeout in milliseconds.
spring.elasticsearch.jest.uris=http://localhost:9200 # Comma-separated list of the Elasticsearch instances to use.
spring.elasticsearch.jest.username= # Login user.

# H2 Web Console (H2ConsoleProperties)
spring.h2.console.enabled=false # Enable the console.
spring.h2.console.path=/h2-console # Path at which the console will be available.
spring.h2.console.settings.trace=false # Enable trace output.
spring.h2.console.settings.web-allow-others=false # Enable remote access.

# JOOQ (JooqAutoConfiguration)
spring.jooq.sql-dialect= # SQLDialect JOOQ used when communicating with the configured datasource. For instance `POSTGRES`

# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
spring.data.jpa.repositories.enabled=true # Enable JPA repositories.
spring.jpa.database= # Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.
spring.jpa.database-platform= # Name of the target database to operate on, auto-detected by default. Can be alternatively set using the "Database" enum.
spring.jpa.generate-ddl=false # Initialize the schema on startup.
spring.jpa.hibernate.ddl-auto= # DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to "create-drop" when using an embedded database, "none" otherwise.
spring.jpa.hibernate.naming.implicit-strategy= # Hibernate 5 implicit naming strategy fully qualified name.
spring.jpa.hibernate.naming.physical-strategy= # Hibernate 5 physical naming strategy fully qualified name.
spring.jpa.hibernate.naming.strategy= # Hibernate 4 naming strategy fully qualified name. Not supported with Hibernate 5.
spring.jpa.hibernate.use-new-id-generator-mappings= # Use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE.
spring.jpa.open-in-view=true # Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.
spring.jpa.properties.*= # Additional native properties to set on the JPA provider.
spring.jpa.show-sql=false # Enable logging of SQL statements.

# JTA (JtaAutoConfiguration)
spring.jta.enabled=true # Enable JTA support.
spring.jta.log-dir= # Transaction logs directory.
spring.jta.transaction-manager-id= # Transaction manager unique identifier.

# ATOMIKOS (AtomikosProperties)
spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true # Whether or not to ignore the transacted flag when creating session.
spring.jta.atomikos.connectionfactory.local-transaction-mode=false # Whether or not local transactions are desired.
spring.jta.atomikos.connectionfactory.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
spring.jta.atomikos.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.atomikos.connectionfactory.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.connectionfactory.min-pool-size=1 # The minimum size of the pool.
spring.jta.atomikos.connectionfactory.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
spring.jta.atomikos.datasource.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
spring.jta.atomikos.datasource.default-isolation-level= # Default isolation level of connections provided by the pool.
spring.jta.atomikos.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.
spring.jta.atomikos.datasource.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
spring.jta.atomikos.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.atomikos.datasource.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.datasource.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.datasource.min-pool-size=1 # The minimum size of the pool.
spring.jta.atomikos.datasource.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
spring.jta.atomikos.datasource.test-query= # SQL query or statement used to validate a connection before returning it.
spring.jta.atomikos.datasource.unique-resource-name=dataSource # The unique name used to identify the resource during recovery.
spring.jta.atomikos.properties.checkpoint-interval=500 # Interval between checkpoints.
spring.jta.atomikos.properties.console-file-count=1 # Number of debug logs files that can be created.
spring.jta.atomikos.properties.console-file-limit=-1 # How many bytes can be stored at most in debug logs files.
spring.jta.atomikos.properties.console-file-name=tm.out # Debug logs file name.
spring.jta.atomikos.properties.console-log-level= # Console log level.
spring.jta.atomikos.properties.default-jta-timeout=10000 # Default timeout for JTA transactions.
spring.jta.atomikos.properties.enable-logging=true # Enable disk logging.
spring.jta.atomikos.properties.force-shutdown-on-vm-exit=false # Specify if a VM shutdown should trigger forced shutdown of the transaction core.
spring.jta.atomikos.properties.log-base-dir= # Directory in which the log files should be stored.
spring.jta.atomikos.properties.log-base-name=tmlog # Transactions log file base name.
spring.jta.atomikos.properties.max-actives=50 # Maximum number of active transactions.
spring.jta.atomikos.properties.max-timeout=300000 # Maximum timeout (in milliseconds) that can be allowed for transactions.
spring.jta.atomikos.properties.output-dir= # Directory in which to store the debug log files.
spring.jta.atomikos.properties.serial-jta-transactions=true # Specify if sub-transactions should be joined when possible.
spring.jta.atomikos.properties.service= # Transaction manager implementation that should be started.
spring.jta.atomikos.properties.threaded-two-phase-commit=true # Use different (and concurrent) threads for two-phase commit on the participating resources.
spring.jta.atomikos.properties.transaction-manager-unique-name= # Transaction manager's unique name.

# BITRONIX
spring.jta.bitronix.connectionfactory.acquire-increment=1 # Number of connections to create when growing the pool.
spring.jta.bitronix.connectionfactory.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
spring.jta.bitronix.connectionfactory.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
spring.jta.bitronix.connectionfactory.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
spring.jta.bitronix.connectionfactory.cache-producers-consumers=true # Whether or not produces and consumers should be cached.
spring.jta.bitronix.connectionfactory.defer-connection-release=true # Whether or not the provider can run many transactions on the same connection and supports transaction interleaving.
spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
spring.jta.bitronix.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.bitronix.connectionfactory.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
spring.jta.bitronix.connectionfactory.min-pool-size=0 # The minimum size of the pool.
spring.jta.bitronix.connectionfactory.password= # The password to use to connect to the JMS provider.
spring.jta.bitronix.connectionfactory.share-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
spring.jta.bitronix.connectionfactory.test-connections=true # Whether or not connections should be tested when acquired from the pool.
spring.jta.bitronix.connectionfactory.two-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).
spring.jta.bitronix.connectionfactory.unique-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
spring.jta.bitronix.connectionfactory.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
spring.jta.bitronix.connectionfactory.user= # The user to use to connect to the JMS provider.
spring.jta.bitronix.datasource.acquire-increment=1 # Number of connections to create when growing the pool.
spring.jta.bitronix.datasource.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
spring.jta.bitronix.datasource.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
spring.jta.bitronix.datasource.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
spring.jta.bitronix.datasource.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
spring.jta.bitronix.datasource.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
spring.jta.bitronix.datasource.cursor-holdability= # The default cursor holdability for connections.
spring.jta.bitronix.datasource.defer-connection-release=true # Whether or not the database can run many transactions on the same connection and supports transaction interleaving.
spring.jta.bitronix.datasource.enable-jdbc4-connection-test= # Whether or not Connection.isValid() is called when acquiring a connection from the pool.
spring.jta.bitronix.datasource.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
spring.jta.bitronix.datasource.isolation-level= # The default isolation level for connections.
spring.jta.bitronix.datasource.local-auto-commit= # The default auto-commit mode for local transactions.
spring.jta.bitronix.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.
spring.jta.bitronix.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.bitronix.datasource.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
spring.jta.bitronix.datasource.min-pool-size=0 # The minimum size of the pool.
spring.jta.bitronix.datasource.prepared-statement-cache-size=0 # The target size of the prepared statement cache. 0 disables the cache.
spring.jta.bitronix.datasource.share-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
spring.jta.bitronix.datasource.test-query= # SQL query or statement used to validate a connection before returning it.
spring.jta.bitronix.datasource.two-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).
spring.jta.bitronix.datasource.unique-name=dataSource # The unique name used to identify the resource during recovery.
spring.jta.bitronix.datasource.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
spring.jta.bitronix.properties.allow-multiple-lrc=false # Allow multiple LRC resources to be enlisted into the same transaction.
spring.jta.bitronix.properties.asynchronous2-pc=false # Enable asynchronously execution of two phase commit.
spring.jta.bitronix.properties.background-recovery-interval-seconds=60 # Interval in seconds at which to run the recovery process in the background.
spring.jta.bitronix.properties.current-node-only-recovery=true # Recover only the current node.
spring.jta.bitronix.properties.debug-zero-resource-transaction=false # Log the creation and commit call stacks of transactions executed without a single enlisted resource.
spring.jta.bitronix.properties.default-transaction-timeout=60 # Default transaction timeout in seconds.
spring.jta.bitronix.properties.disable-jmx=false # Enable JMX support.
spring.jta.bitronix.properties.exception-analyzer= # Set the fully qualified name of the exception analyzer implementation to use.
spring.jta.bitronix.properties.filter-log-status=false # Enable filtering of logs so that only mandatory logs are written.
spring.jta.bitronix.properties.force-batching-enabled=true # Set if disk forces are batched.
spring.jta.bitronix.properties.forced-write-enabled=true # Set if logs are forced to disk.
spring.jta.bitronix.properties.graceful-shutdown-interval=60 # Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.
spring.jta.bitronix.properties.jndi-transaction-synchronization-registry-name= # JNDI name of the TransactionSynchronizationRegistry.
spring.jta.bitronix.properties.jndi-user-transaction-name= # JNDI name of the UserTransaction.
spring.jta.bitronix.properties.journal=disk # Name of the journal. Can be 'disk', 'null' or a class name.
spring.jta.bitronix.properties.log-part1-filename=btm1.tlog # Name of the first fragment of the journal.
spring.jta.bitronix.properties.log-part2-filename=btm2.tlog # Name of the second fragment of the journal.
spring.jta.bitronix.properties.max-log-size-in-mb=2 # Maximum size in megabytes of the journal fragments.
spring.jta.bitronix.properties.resource-configuration-filename= # ResourceLoader configuration file name.
spring.jta.bitronix.properties.server-id= # ASCII ID that must uniquely identify this TM instance. Default to the machine's IP address.
spring.jta.bitronix.properties.skip-corrupted-logs=false # Skip corrupted transactions log entries.
spring.jta.bitronix.properties.warn-about-zero-resource-transaction=true # Log a warning for transactions executed without a single enlisted resource.

# NARAYANA (NarayanaProperties)
spring.jta.narayana.default-timeout=60 # Transaction timeout in seconds.
spring.jta.narayana.expiry-scanners=com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner # Comma-separated list of expiry scanners.
spring.jta.narayana.log-dir= # Transaction object store directory.
spring.jta.narayana.one-phase-commit=true # Enable one phase commit optimisation.
spring.jta.narayana.periodic-recovery-period=120 # Interval in which periodic recovery scans are performed in seconds.
spring.jta.narayana.recovery-backoff-period=10 # Back off period between first and second phases of the recovery scan in seconds.
spring.jta.narayana.recovery-db-pass= # Database password to be used by recovery manager.
spring.jta.narayana.recovery-db-user= # Database username to be used by recovery manager.
spring.jta.narayana.recovery-jms-pass= # JMS password to be used by recovery manager.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of orphan filters.

# EMBEDDED MONGODB (EmbeddedMongoProperties)
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.
spring.mongodb.embedded.storage.databaseDir= # Directory used for data storage.
spring.mongodb.embedded.storage.oplogSize= # Maximum size of the oplog in megabytes.
spring.mongodb.embedded.storage.replSetName= # Name of the replica set.
spring.mongodb.embedded.version=2.6.10 # Version of Mongo to use.

# REDIS (RedisProperties)
spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.
spring.redis.database=0 # Database index used by the connection factory.
spring.redis.host=localhost # Redis server host.
spring.redis.password= # Login password of the redis server.
spring.redis.pool.max-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
spring.redis.pool.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
spring.redis.pool.max-wait=-1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
spring.redis.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
spring.redis.port=6379 # Redis server port.
spring.redis.sentinel.master= # Name of Redis server.
spring.redis.sentinel.nodes= # Comma-separated list of host:port pairs.
spring.redis.timeout=0 # Connection timeout in milliseconds.


# ----------------------------------------
# INTEGRATION PROPERTIES
# ----------------------------------------

# ACTIVEMQ (ActiveMQProperties)
spring.activemq.broker-url= # URL of the ActiveMQ broker. Auto-generated by default. For instance `tcp://localhost:61616`
spring.activemq.in-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.
spring.activemq.password= # Login password of the broker.
spring.activemq.user= # Login user of the broker.
spring.activemq.packages.trust-all=false # Trust all packages.
spring.activemq.packages.trusted= # Comma-separated list of specific packages to trust (when not trusting all packages).
spring.activemq.pool.configuration.*= # See PooledConnectionFactory.
spring.activemq.pool.enabled=false # Whether a PooledConnectionFactory should be created instead of a regular ConnectionFactory.
spring.activemq.pool.expiry-timeout=0 # Connection expiration timeout in milliseconds.
spring.activemq.pool.idle-timeout=30000 # Connection idle timeout in milliseconds.
spring.activemq.pool.max-connections=1 # Maximum number of pooled connections.

# ARTEMIS (ArtemisProperties)
spring.artemis.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.
spring.artemis.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned off.
spring.artemis.embedded.enabled=true # Enable embedded mode if the Artemis server APIs are available.
spring.artemis.embedded.persistent=false # Enable persistent store.
spring.artemis.embedded.queues= # Comma-separated list of queues to create on startup.
spring.artemis.embedded.server-id= # Server id. By default, an auto-incremented counter is used.
spring.artemis.embedded.topics= # Comma-separated list of topics to create on startup.
spring.artemis.host=localhost # Artemis broker host.
spring.artemis.mode= # Artemis deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".
spring.artemis.password= # Login password of the broker.
spring.artemis.port=61616 # Artemis broker port.
spring.artemis.user= # Login user of the broker.

# SPRING BATCH (BatchProperties)
spring.batch.initializer.enabled=true # Create the required batch tables on startup if necessary.
spring.batch.job.enabled=true # Execute all Spring Batch jobs in the context on startup.
spring.batch.job.names= # Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.
spring.batch.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
spring.batch.table-prefix= # Table prefix for all the batch meta-data tables.

# HORNETQ (HornetQProperties)
spring.hornetq.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.
spring.hornetq.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned off.
spring.hornetq.embedded.enabled=true # Enable embedded mode if the HornetQ server APIs are available.
spring.hornetq.embedded.persistent=false # Enable persistent store.
spring.hornetq.embedded.queues= # Comma-separated list of queues to create on startup.
spring.hornetq.embedded.server-id= # Server id. By default, an auto-incremented counter is used.
spring.hornetq.embedded.topics= # Comma-separated list of topics to create on startup.
spring.hornetq.host=localhost # HornetQ broker host.
spring.hornetq.mode= # HornetQ deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".
spring.hornetq.password= # Login password of the broker.
spring.hornetq.port=5445 # HornetQ broker port.
spring.hornetq.user= # Login user of the broker.

# JMS (JmsProperties)
spring.jms.jndi-name= # Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations.
spring.jms.listener.acknowledge-mode= # Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment.
spring.jms.listener.auto-startup=true # Start the container automatically on startup.
spring.jms.listener.concurrency= # Minimum number of concurrent consumers.
spring.jms.listener.max-concurrency= # Maximum number of concurrent consumers.
spring.jms.pub-sub-domain=false # Specify if the default destination type is topic.

# RABBIT (RabbitProperties)
spring.rabbitmq.addresses= # Comma-separated list of addresses to which the client should connect.
spring.rabbitmq.cache.channel.checkout-timeout= # Number of milliseconds to wait to obtain a channel if the cache size has been reached.
spring.rabbitmq.cache.channel.size= # Number of channels to retain in the cache.
spring.rabbitmq.cache.connection.mode=CHANNEL # Connection factory cache mode.
spring.rabbitmq.cache.connection.size= # Number of connections to cache.
spring.rabbitmq.connection-timeout= # Connection timeout, in milliseconds; zero for infinite.
spring.rabbitmq.dynamic=true # Create an AmqpAdmin bean.
spring.rabbitmq.host=localhost # RabbitMQ host.
spring.rabbitmq.listener.acknowledge-mode= # Acknowledge mode of container.
spring.rabbitmq.listener.auto-startup=true # Start the container automatically on startup.
spring.rabbitmq.listener.concurrency= # Minimum number of consumers.
spring.rabbitmq.listener.default-requeue-rejected= # Whether or not to requeue delivery failures; default `true`.
spring.rabbitmq.listener.max-concurrency= # Maximum number of consumers.
spring.rabbitmq.listener.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
spring.rabbitmq.listener.retry.enabled=false # Whether or not publishing retries are enabled.
spring.rabbitmq.listener.retry.initial-interval=1000 # Interval between the first and second attempt to deliver a message.
spring.rabbitmq.listener.retry.max-attempts=3 # Maximum number of attempts to deliver a message.
spring.rabbitmq.listener.retry.max-interval=10000 # Maximum number of attempts to deliver a message.
spring.rabbitmq.listener.retry.multiplier=1.0 # A multiplier to apply to the previous delivery retry interval.
spring.rabbitmq.listener.retry.stateless=true # Whether or not retry is stateless or stateful.
spring.rabbitmq.listener.transaction-size= # Number of messages to be processed in a transaction. For best results it should be less than or equal to the prefetch count.
spring.rabbitmq.password= # Login to authenticate against the broker.
spring.rabbitmq.port=5672 # RabbitMQ port.
spring.rabbitmq.publisher-confirms=false # Enable publisher confirms.
spring.rabbitmq.publisher-returns=false # Enable publisher returns.
spring.rabbitmq.requested-heartbeat= # Requested heartbeat timeout, in seconds; zero for none.
spring.rabbitmq.ssl.enabled=false # Enable SSL support.
spring.rabbitmq.ssl.key-store= # Path to the key store that holds the SSL certificate.
spring.rabbitmq.ssl.key-store-password= # Password used to access the key store.
spring.rabbitmq.ssl.trust-store= # Trust store that holds SSL certificates.
spring.rabbitmq.ssl.trust-store-password= # Password used to access the trust store.
spring.rabbitmq.ssl.algorithm= # SSL algorithm to use. By default configure by the rabbit client library.
spring.rabbitmq.template.mandatory=false # Enable mandatory messages.
spring.rabbitmq.template.receive-timeout=0 # Timeout for `receive()` methods.
spring.rabbitmq.template.reply-timeout=5000 # Timeout for `sendAndReceive()` methods.
spring.rabbitmq.template.retry.enabled=false # Set to true to enable retries in the `RabbitTemplate`.
spring.rabbitmq.template.retry.initial-interval=1000 # Interval between the first and second attempt to publish a message.
spring.rabbitmq.template.retry.max-attempts=3 # Maximum number of attempts to publish a message.
spring.rabbitmq.template.retry.max-interval=10000 # Maximum number of attempts to publish a message.
spring.rabbitmq.template.retry.multiplier=1.0 # A multiplier to apply to the previous publishing retry interval.
spring.rabbitmq.username= # Login user to authenticate to the broker.
spring.rabbitmq.virtual-host= # Virtual host to use when connecting to the broker.


# ----------------------------------------
# ACTUATOR PROPERTIES
# ----------------------------------------

# ENDPOINTS (AbstractEndpoint subclasses)
endpoints.enabled=true # Enable endpoints.
endpoints.sensitive= # Default endpoint sensitive setting.
endpoints.actuator.enabled=true # Enable the endpoint.
endpoints.actuator.path= # Endpoint URL path.
endpoints.actuator.sensitive=false # Enable security on the endpoint.
endpoints.autoconfig.enabled= # Enable the endpoint.
endpoints.autoconfig.id= # Endpoint identifier.
endpoints.autoconfig.path= # Endpoint path.
endpoints.autoconfig.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.beans.enabled= # Enable the endpoint.
endpoints.beans.id= # Endpoint identifier.
endpoints.beans.path= # Endpoint path.
endpoints.beans.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.configprops.enabled= # Enable the endpoint.
endpoints.configprops.id= # Endpoint identifier.
endpoints.configprops.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.
endpoints.configprops.path= # Endpoint path.
endpoints.configprops.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.docs.curies.enabled=false # Enable the curie generation.
endpoints.docs.enabled=true # Enable actuator docs endpoint.
endpoints.docs.path=/docs #
endpoints.docs.sensitive=false #
endpoints.dump.enabled= # Enable the endpoint.
endpoints.dump.id= # Endpoint identifier.
endpoints.dump.path= # Endpoint path.
endpoints.dump.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.env.enabled= # Enable the endpoint.
endpoints.env.id= # Endpoint identifier.
endpoints.env.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.
endpoints.env.path= # Endpoint path.
endpoints.env.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.flyway.enabled= # Enable the endpoint.
endpoints.flyway.id= # Endpoint identifier.
endpoints.flyway.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.health.enabled= # Enable the endpoint.
endpoints.health.id= # Endpoint identifier.
endpoints.health.mapping.*= # Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).
endpoints.health.path= # Endpoint path.
endpoints.health.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.health.time-to-live=1000 # Time to live for cached result, in milliseconds.
endpoints.heapdump.enabled= # Enable the endpoint.
endpoints.heapdump.path= # Endpoint path.
endpoints.heapdump.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.info.enabled= # Enable the endpoint.
endpoints.info.id= # Endpoint identifier.
endpoints.info.path= # Endpoint path.
endpoints.info.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.jolokia.enabled=true # Enable Jolokia endpoint.
endpoints.jolokia.path=/jolokia # Endpoint URL path.
endpoints.jolokia.sensitive=true # Enable security on the endpoint.
endpoints.liquibase.enabled= # Enable the endpoint.
endpoints.liquibase.id= # Endpoint identifier.
endpoints.liquibase.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.logfile.enabled=true # Enable the endpoint.
endpoints.logfile.external-file= # External Logfile to be accessed.
endpoints.logfile.path=/logfile # Endpoint URL path.
endpoints.logfile.sensitive=true # Enable security on the endpoint.
endpoints.mappings.enabled= # Enable the endpoint.
endpoints.mappings.id= # Endpoint identifier.
endpoints.mappings.path= # Endpoint path.
endpoints.mappings.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.metrics.enabled= # Enable the endpoint.
endpoints.metrics.filter.enabled=true # Enable the metrics servlet filter.
endpoints.metrics.filter.gauge-submissions=merged # Http filter gauge submissions (merged, per-http-method)
endpoints.metrics.filter.counter-submissions=merged # Http filter counter submissions (merged, per-http-method)
endpoints.metrics.id= # Endpoint identifier.
endpoints.metrics.path= # Endpoint path.
endpoints.metrics.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.shutdown.enabled= # Enable the endpoint.
endpoints.shutdown.id= # Endpoint identifier.
endpoints.shutdown.path= # Endpoint path.
endpoints.shutdown.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.trace.enabled= # Enable the endpoint.
endpoints.trace.id= # Endpoint identifier.
endpoints.trace.path= # Endpoint path.
endpoints.trace.sensitive= # Mark if the endpoint exposes sensitive information.

# ENDPOINTS CORS CONFIGURATION (EndpointCorsProperties)
endpoints.cors.allow-credentials= # Set whether credentials are supported. When not set, credentials are not supported.
endpoints.cors.allowed-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.
endpoints.cors.allowed-methods=GET # Comma-separated list of methods to allow. '*' allows all methods.
endpoints.cors.allowed-origins= # Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.
endpoints.cors.exposed-headers= # Comma-separated list of headers to include in a response.
endpoints.cors.max-age=1800 # How long, in seconds, the response from a pre-flight request can be cached by clients.

# JMX ENDPOINT (EndpointMBeanExportProperties)
endpoints.jmx.domain= # JMX domain name. Initialized with the value of 'spring.jmx.default-domain' if set.
endpoints.jmx.enabled=true # Enable JMX export of all endpoints.
endpoints.jmx.static-names= # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.
endpoints.jmx.unique-names=false # Ensure that ObjectNames are modified in case of conflict.

# JOLOKIA (JolokiaProperties)
jolokia.config.*= # See Jolokia manual

# MANAGEMENT HTTP SERVER (ManagementServerProperties)
management.add-application-context-header=true # Add the "X-Application-Context" HTTP header in each response.
management.address= # Network address that the management endpoints should bind to.
management.context-path= # Management endpoint context-path. For instance `/actuator`
management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
management.security.enabled=true # Enable security.
management.security.roles=ADMIN # Comma-separated list of roles that can access the management endpoint.
management.security.sessions=stateless # Session creating policy to use (always, never, if_required, stateless).
management.ssl.ciphers= # Supported SSL ciphers. Requires a custom management.port.
management.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom management.port.
management.ssl.enabled= # Enable SSL support. Requires a custom management.port.
management.ssl.enabled-protocols= # Enabled SSL protocols. Requires a custom management.port.
management.ssl.key-alias= # Alias that identifies the key in the key store. Requires a custom management.port.
management.ssl.key-password= # Password used to access the key in the key store. Requires a custom management.port.
management.ssl.key-store= # Path to the key store that holds the SSL certificate (typically a jks file). Requires a custom management.port.
management.ssl.key-store-password= # Password used to access the key store. Requires a custom management.port.
management.ssl.key-store-provider= # Provider for the key store. Requires a custom management.port.
management.ssl.key-store-type= # Type of the key store. Requires a custom management.port.
management.ssl.protocol=TLS # SSL protocol to use. Requires a custom management.port.
management.ssl.trust-store= # Trust store that holds SSL certificates. Requires a custom management.port.
management.ssl.trust-store-password= # Password used to access the trust store. Requires a custom management.port.
management.ssl.trust-store-provider= # Provider for the trust store. Requires a custom management.port.
management.ssl.trust-store-type= # Type of the trust store. Requires a custom management.port.

# HEALTH INDICATORS (previously health.*)
management.health.db.enabled=true # Enable database health check.
management.health.defaults.enabled=true # Enable default health indicators.
management.health.diskspace.enabled=true # Enable disk space health check.
management.health.diskspace.path= # Path used to compute the available disk space.
management.health.diskspace.threshold=0 # Minimum disk space that should be available, in bytes.
management.health.elasticsearch.enabled=true # Enable elasticsearch health check.
management.health.elasticsearch.indices= # Comma-separated index names.
management.health.elasticsearch.response-timeout=100 # The time, in milliseconds, to wait for a response from the cluster.
management.health.jms.enabled=true # Enable JMS health check.
management.health.mail.enabled=true # Enable Mail health check.
management.health.mongo.enabled=true # Enable MongoDB health check.
management.health.rabbit.enabled=true # Enable RabbitMQ health check.
management.health.redis.enabled=true # Enable Redis health check.
management.health.solr.enabled=true # Enable Solr health check.
management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP # Comma-separated list of health statuses in order of severity.

# INFO CONTRIBUTORS (InfoContributorProperties)
management.info.build.enabled=true # Enable build info.
management.info.defaults.enabled=true # Enable default info contributors.
management.info.env.enabled=true # Enable environment info.
management.info.git.enabled=true # Enable git info.
management.info.git.mode=simple # Mode to use to expose git information.

# REMOTE SHELL (ShellProperties)
management.shell.auth.type=simple # Authentication type. Auto-detected according to the environment.
management.shell.auth.jaas.domain=my-domain # JAAS domain.
management.shell.auth.key.path= # Path to the authentication key. This should point to a valid ".pem" file.
management.shell.auth.simple.user.name=user # Login user.
management.shell.auth.simple.user.password= # Login password.
management.shell.auth.spring.roles=ADMIN # Comma-separated list of required roles to login to the CRaSH console.
management.shell.command-path-patterns=classpath*:/commands/**,classpath*:/crash/commands/** # Patterns to use to look for commands.
management.shell.command-refresh-interval=-1 # Scan for changes and update the command if necessary (in seconds).
management.shell.config-path-patterns=classpath*:/crash/* # Patterns to use to look for configurations.
management.shell.disabled-commands=jpa*,jdbc*,jndi* # Comma-separated list of commands to disable.
management.shell.disabled-plugins= # Comma-separated list of plugins to disable. Certain plugins are disabled by default based on the environment.
management.shell.ssh.auth-timeout = # Number of milliseconds after user will be prompted to login again.
management.shell.ssh.enabled=true # Enable CRaSH SSH support.
management.shell.ssh.idle-timeout = # Number of milliseconds after which unused connections are closed.
management.shell.ssh.key-path= # Path to the SSH server key.
management.shell.ssh.port=2000 # SSH port.
management.shell.telnet.enabled=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.
management.shell.telnet.port=5000 # Telnet port.

# TRACING (TraceProperties)
management.trace.include=request-headers,response-headers,cookies,errors # Items to be included in the trace.

# METRICS EXPORT (MetricExportProperties)
spring.metrics.export.aggregate.key-pattern= # Pattern that tells the aggregator what to do with the keys from the source repository.
spring.metrics.export.aggregate.prefix= # Prefix for global repository if active.
spring.metrics.export.delay-millis=5000 # Delay in milliseconds between export ticks. Metrics are exported to external sources on a schedule with this delay.
spring.metrics.export.enabled=true # Flag to enable metric export (assuming a MetricWriter is available).
spring.metrics.export.excludes= # List of patterns for metric names to exclude. Applied after the includes.
spring.metrics.export.includes= # List of patterns for metric names to include.
spring.metrics.export.redis.key=keys.spring.metrics # Key for redis repository export (if active).
spring.metrics.export.redis.prefix=spring.metrics # Prefix for redis repository if active.
spring.metrics.export.send-latest= # Flag to switch off any available optimizations based on not exporting unchanged metric values.
spring.metrics.export.statsd.host= # Host of a statsd server to receive exported metrics.
spring.metrics.export.statsd.port=8125 # Port of a statsd server to receive exported metrics.
spring.metrics.export.statsd.prefix= # Prefix for statsd exported metrics.
spring.metrics.export.triggers.*= # Specific trigger properties per MetricWriter bean name.


# ----------------------------------------
# DEVTOOLS PROPERTIES
# ----------------------------------------

# DEVTOOLS (DevToolsProperties)
spring.devtools.livereload.enabled=true # Enable a livereload.com compatible server.
spring.devtools.livereload.port=35729 # Server port.
spring.devtools.restart.additional-exclude= # Additional patterns that should be excluded from triggering a full restart.
spring.devtools.restart.additional-paths= # Additional paths to watch for changes.
spring.devtools.restart.enabled=true # Enable automatic restart.
spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties # Patterns that should be excluded from triggering a full restart.
spring.devtools.restart.poll-interval=1000 # Amount of time (in milliseconds) to wait between polling for classpath changes.
spring.devtools.restart.quiet-period=400 # Amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered.
spring.devtools.restart.trigger-file= # Name of a specific file that when changed will trigger the restart check. If not specified any classpath file change will trigger the restart.

# REMOTE DEVTOOLS (RemoteDevToolsProperties)
spring.devtools.remote.context-path=/.~~spring-boot!~ # Context path used to handle the remote connection.
spring.devtools.remote.debug.enabled=true # Enable remote debug support.
spring.devtools.remote.debug.local-port=8000 # Local remote debug server port.
spring.devtools.remote.proxy.host= # The host of the proxy to use to connect to the remote application.
spring.devtools.remote.proxy.port= # The port of the proxy to use to connect to the remote application.
spring.devtools.remote.restart.enabled=true # Enable remote restart.
spring.devtools.remote.secret= # A shared secret required to establish a connection (required to enable remote support).
spring.devtools.remote.secret-header-name=X-AUTH-TOKEN # HTTP header used to transfer the shared secret.

以上這篇基于spring boot 的配置參考大全(推薦)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • IntelliJ IDEA使用SVN分支的簡(jiǎn)單介紹

    IntelliJ IDEA使用SVN分支的簡(jiǎn)單介紹

    今天小編就為大家分享一篇關(guān)于IntelliJ IDEA使用SVN分支的簡(jiǎn)單介紹,小編覺(jué)得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧
    2018-10-10
  • Java中的

    Java中的"goto"語(yǔ)句妙用

    這篇文章主要介紹了Java中的"goto"語(yǔ)句妙用,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-11-11
  • SpringCloudGateway?Nacos?GitlabRunner全自動(dòng)灰度服務(wù)搭建發(fā)布

    SpringCloudGateway?Nacos?GitlabRunner全自動(dòng)灰度服務(wù)搭建發(fā)布

    這篇文章主要為大家介紹了SpringCloudGateway?Nacos?GitlabRunner全自動(dòng)灰度服務(wù)搭建和發(fā)布實(shí)戰(zhàn)詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-04-04
  • Spring中統(tǒng)一異常處理示例詳解

    Spring中統(tǒng)一異常處理示例詳解

    這篇文章主要給大家介紹了關(guān)于Spring中統(tǒng)一異常處理的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用spring具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2018-09-09
  • SpringMvc+POI處理excel表數(shù)據(jù)導(dǎo)入

    SpringMvc+POI處理excel表數(shù)據(jù)導(dǎo)入

    這篇文章主要為大家詳細(xì)介紹了SpringMvc+POI處理excel表數(shù)據(jù)導(dǎo)入,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-06-06
  • spring?mybatis環(huán)境常量與枚舉轉(zhuǎn)換示例詳解

    spring?mybatis環(huán)境常量與枚舉轉(zhuǎn)換示例詳解

    這篇文章主要為大家介紹了spring?mybatis環(huán)境常量與枚舉轉(zhuǎn)換示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-06-06
  • java  Iterator接口和LIstIterator接口分析

    java Iterator接口和LIstIterator接口分析

    這篇文章主要介紹了java Iterator接口和LIstIterator接口分析的相關(guān)資料,需要的朋友可以參考下
    2017-05-05
  • SpringBoot中動(dòng)態(tài)更新@Value配置方式

    SpringBoot中動(dòng)態(tài)更新@Value配置方式

    這篇文章主要介紹了SpringBoot中動(dòng)態(tài)更新@Value配置方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-09-09
  • Java異常處理中的各種細(xì)節(jié)匯總

    Java異常處理中的各種細(xì)節(jié)匯總

    這篇文章主要給大家介紹了關(guān)于Java異常處理中的各種細(xì)節(jié)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-01-01
  • Spring AOP注解實(shí)戰(zhàn)指南

    Spring AOP注解實(shí)戰(zhàn)指南

    在現(xiàn)代軟件開(kāi)發(fā)中,面向切面編程(AOP)是一種強(qiáng)大的編程范式,本文將介紹如何在Spring框架中通過(guò)AspectJ注解以及對(duì)應(yīng)的XML配置來(lái)實(shí)現(xiàn)AOP,在不改變主業(yè)務(wù)邏輯的情況下增強(qiáng)應(yīng)用程序的功能,需要的朋友可以參考下
    2024-06-06

最新評(píng)論

白嫩白嫩美女极品国产在线观看| 老司机你懂得福利视频| 国产成人精品一区在线观看| 日本午夜爽爽爽爽爽视频在线观看| 55夜色66夜色国产精品站| 青娱乐蜜桃臀av色| 人人妻人人爱人人草| 亚洲免费成人a v| 色哟哟国产精品入口| 日韩三级黄色片网站| 亚洲av日韩av网站| 免费一级特黄特色大片在线观看| 91免费放福利在线观看| 黄色的网站在线免费看| 色花堂在线av中文字幕九九| 在线观看亚洲人成免费网址| 91精品综合久久久久3d动漫| 欧美在线一二三视频| 啪啪啪啪啪啪啪啪av| 老司机深夜免费福利视频在线观看| 一区二区三区日本伦理| 91精品啪在线免费| 99久久久无码国产精品性出奶水| 99热碰碰热精品a中文| 免费在线看的黄片视频| 中文字幕亚洲久久久| 亚洲熟色妇av日韩熟色妇在线| 国产精品久久久黄网站| 成年人该看的视频黄免费| 这里有精品成人国产99| 国产欧美精品不卡在线| 久久久久久久99精品| 欧美国品一二三产区区别| 11久久久久久久久久久| 全国亚洲男人的天堂| 成年午夜免费无码区| 青青草国内在线视频精选| 日本精品视频不卡一二三| 91小伙伴中女熟女高潮| 黄色大片免费观看网站| 日日爽天天干夜夜操| 久草视频在线一区二区三区资源站| 护士特殊服务久久久久久久| 欧美一区二区三区乱码在线播放| 中文字幕日韩91人妻在线| 国产又粗又黄又硬又爽| 久草视频中文字幕在线观看| 日本美女性生活一级片| 国产精品久久综合久久| 久久永久免费精品人妻专区| 在线观看av2025| 亚洲午夜电影之麻豆| 骚货自慰被发现爆操| 少妇高潮无套内谢麻豆| 天天射夜夜操狠狠干| 特黄老太婆aa毛毛片| 日本一本午夜在线播放| 天天干天天插天天谢| 国产成人精品一区在线观看| 美味人妻2在线播放| 亚洲图片欧美校园春色| 久久久久国产成人精品亚洲午夜| 亚洲一区自拍高清免费视频| 在线免费91激情四射| 国产V亚洲V天堂无码欠欠| 久草电影免费在线观看| 国产男女视频在线播放| 亚洲日产av一区二区在线| 亚洲天天干 夜夜操| 午夜成午夜成年片在线观看| 午夜精品一区二区三区4| 国产精品人妻66p| 人妻少妇一区二区三区蜜桃| 亚洲图片偷拍自拍区| 日本熟妇喷水xxx| japanese日本熟妇另类| 亚洲第一伊人天堂网| 啪啪啪啪啪啪啪免费视频| 午夜激情精品福利视频| 福利在线视频网址导航| 一色桃子久久精品亚洲| 午夜免费观看精品视频| 91国产资源在线视频| 亚洲特黄aaaa片| 国产麻豆剧传媒精品国产av蜜桃| 美女小视频网站在线| 精品久久久久久久久久中文蒉| av在线播放国产不卡| 91久久精品色伊人6882| 老熟妇xxxhd老熟女| 夜色17s精品人妻熟女| 99婷婷在线观看视频| 亚洲欧美激情国产综合久久久| 一区二区视频在线观看视频在线| 日本韩国免费一区二区三区视频| 999九九久久久精品| 美女骚逼日出水来了| 国产超码片内射在线| 黄色黄色黄片78在线| 亚洲成人av一区在线| 亚洲av日韩av网站| 国产精品探花熟女在线观看| 国产 在线 免费 精品| 一色桃子久久精品亚洲| 中文字幕在线乱码一区二区| 在线视频国产欧美日韩| 久久永久免费精品人妻专区| av手机在线免费观看日韩av| 日本少妇高清视频xxxxx| 人妻素人精油按摩中出| 亚洲天堂av最新网址| 四虎永久在线精品免费区二区| 激情伦理欧美日韩中文字幕| 亚洲精品亚洲人成在线导航| 亚洲卡1卡2卡三卡四老狼| 999九九久久久精品| 黄页网视频在线免费观看| jiuse91九色视频| 熟女人妻在线中出观看完整版| 成人影片高清在线观看| 国产麻豆剧传媒精品国产av蜜桃| 国产超码片内射在线| 成年午夜免费无码区| 黄色成年网站午夜在线观看 | 2025年人妻中文字幕乱码在线| 婷婷色国产黑丝少妇勾搭AV| av中文字幕在线导航| 成人av久久精品一区二区| 日韩少妇人妻精品无码专区| 97精品人妻一区二区三区精品| av线天堂在线观看| 青青草原网站在线观看| 一区二区久久成人网| 中文字幕之无码色多多| 国产91嫩草久久成人在线视频| 日本高清在线不卡一区二区| 2020久久躁狠狠躁夜夜躁| 欧亚日韩一区二区三区观看视频| av森泽佳奈在线观看| 3D动漫精品啪啪一区二区下载| 天天射夜夜操综合网| 日韩欧美中文国产在线| 精品日产卡一卡二卡国色天香 | 青青青青青青青青青国产精品视频| 天天干天天日天天干天天操| 中文字幕在线第一页成人 | 欧美地区一二三专区| 午夜精品一区二区三区4| www日韩毛片av| 首之国产AV医生和护士小芳| 欧美一区二区中文字幕电影 | 中文字幕第三十八页久久| 国产成人自拍视频播放| 免费黄高清无码国产| 亚洲1卡2卡三卡4卡在线观看 | 国产精品黄色的av| 自拍偷拍亚洲精品第2页| 91麻豆精品传媒国产黄色片| 美女av色播在线播放| 最近的中文字幕在线mv视频| 精品国产污污免费网站入口自| 日本后入视频在线观看| 制服丝袜在线人妻中文字幕| 日本女大学生的黄色小视频| 中文字幕中文字幕 亚洲国产| 午夜的视频在线观看| 国产高清精品极品美女| 2022天天干天天操| 色哟哟国产精品入口| 精品国产乱码一区二区三区乱| 国产三级影院在线观看| 欧美天堂av无线av欧美| 午夜精品一区二区三区4| 三级等保密码要求条款| 午夜毛片不卡在线看| 韩国三级aaaaa高清视频 | 老司机福利精品视频在线| 香蕉aⅴ一区二区三区| 国产精品国产三级国产精东| 搡老妇人老女人老熟女| 天天射,天天操,天天说| 少妇高潮无套内谢麻豆| 国产中文字幕四区在线观看| 顶级尤物粉嫩小尤物网站| 亚洲国产精品久久久久蜜桃| 美女福利视频网址导航| 青娱乐最新视频在线| 日本韩国免费一区二区三区视频| 久久精品36亚洲精品束缚| 亚洲区美熟妇久久久久| 蜜臀成人av在线播放| 中文字幕乱码人妻电影| 午夜精品久久久久麻豆影视| 日韩中文字幕在线播放第二页 | 国产日韩av一区二区在线| 亚洲av自拍天堂网| 精产国品久久一二三产区区别| 在线制服丝袜中文字幕| 粉嫩小穴流水视频在线观看| 亚洲欧美日韩视频免费观看| 午夜精品久久久久久99热| 中文字幕 人妻精品| 成人性爱在线看四区| 国产视频一区在线观看| 97精品人妻一区二区三区精品| 97a片免费在线观看| 亚洲女人的天堂av| 中文字幕免费在线免费| 在线播放国产黄色av| 亚洲另类伦春色综合小| 婷婷久久久久深爱网| 国产视频一区二区午夜| 精品久久久久久久久久久a√国产 日本女大学生的黄色小视频 | 美女视频福利免费看| 午夜在线观看岛国av,com| 国产视频精品资源网站| 中文字幕一区二区亚洲一区| 青青青国产免费视频| 中文字幕+中文字幕| 蜜桃视频17c在线一区二区| 66久久久久久久久久久| 久久h视频在线观看| 久草电影免费在线观看| 涩爱综合久久五月蜜臀| 精品国产亚洲av一淫| 阴茎插到阴道里面的视频| av网址在线播放大全| 中文字幕日韩无敌亚洲精品| 成人区人妻精品一区二视频| 亚洲激情偷拍一区二区| 午夜精品一区二区三区城中村| 极品粉嫩小泬白浆20p主播| 日韩二区视频一线天婷婷五| 天天摸天天干天天操科普| 亚洲欧美自拍另类图片| 天天摸天天亲天天舔天天操天天爽 | 天天干天天操天天玩天天射| 国产+亚洲+欧美+另类| 伊人综合免费在线视频| 日本后入视频在线观看| 91国产在线视频免费观看| 午夜久久久久久久99| 搡老妇人老女人老熟女| 国产高清精品一区二区三区| 精品人妻伦一二三区久| 亚洲精品亚洲人成在线导航 | eeuss鲁片一区二区三区| 91亚洲国产成人精品性色| 精品一区二区三四区| 中国黄色av一级片| 欧美精品激情在线最新观看视频| 欧美偷拍自拍色图片| 男人天堂最新地址av| 国产在线一区二区三区麻酥酥| av在线观看网址av| 日本午夜爽爽爽爽爽视频在线观看| 大陆av手机在线观看| 中文字幕最新久久久| 国产午夜亚洲精品不卡在线观看| 欧美日韩精品永久免费网址| 蜜桃久久久久久久人妻| 日韩美女精品视频在线观看网站| 偷拍自拍视频图片免费| 亚洲精品国偷自产在线观看蜜桃| 2018最新中文字幕在线观看| 日韩欧美一级黄片亚洲| 18禁污污污app下载| 在线观看911精品国产| 亚洲av一妻不如妾| 动漫精品视频在线观看| 快点插进来操我逼啊视频| 亚洲欧美激情国产综合久久久| 91小伙伴中女熟女高潮| 亚洲精品国品乱码久久久久| 亚洲av成人网在线观看| 韩国AV无码不卡在线播放| 3337p日本欧洲大胆色噜噜| 午夜在线观看一区视频| 亚洲成av人无码不卡影片一| 亚洲免费av在线视频| 亚洲精品 欧美日韩| 日本一区精品视频在线观看| 女蜜桃臀紧身瑜伽裤| 日本韩国免费福利精品| 青青青青青免费视频| 精品首页在线观看视频| 中文字幕日韩无敌亚洲精品| sspd152中文字幕在线| 色花堂在线av中文字幕九九| 亚洲无码一区在线影院| 伊人成人在线综合网| 日本xx片在线观看| av日韩在线观看大全| 2020国产在线不卡视频| 亚洲综合另类欧美久久| 亚洲在线观看中文字幕av| 99久久超碰人妻国产| 夏目彩春在线中文字幕| 欧美男人大鸡吧插女人视频 | 亚洲精品午夜aaa久久| 天天干天天啪天天舔| 99久久久无码国产精品性出奶水| 日本黄色特一级视频| 日本成人一区二区不卡免费在线| 中文字幕av熟女人妻| 黄工厂精品视频在线观看| 在线免费观看欧美小视频| 97人妻色免费视频| 日韩精品啪啪视频一道免费| japanese日本熟妇另类| 2021久久免费视频| 成人色综合中文字幕| 熟女少妇激情五十路| 免费在线看的黄片视频| 亚洲国产成人av在线一区| 国产成人小视频在线观看无遮挡| 91中文字幕最新合集| 美女张开腿让男生操在线看| 国产日本精品久久久久久久| 精品91高清在线观看| 国产免费av一区二区凹凸四季| 亚洲综合色在线免费观看| 人妻另类专区欧美制服| 亚洲第一黄色在线观看| 岛国黄色大片在线观看| 少妇高潮一区二区三区| 免费成人va在线观看| 免费观看理论片完整版| 亚洲 中文 自拍 另类 欧美| 在线观看一区二区三级| 亚洲福利午夜久久久精品电影网| 日本真人性生活视频免费看| 精彩视频99免费在线| 日韩欧美亚洲熟女人妻| 亚洲欧美激情人妻偷拍| 中国视频一区二区三区| 婷婷久久久综合中文字幕| 国产高清精品一区二区三区| 超鹏97历史在线观看| 久精品人妻一区二区三区 | 午夜毛片不卡在线看| 桃色视频在线观看一区二区| 天天日天天舔天天射进去| 国产精品午夜国产小视频| 亚洲免费在线视频网站| 亚洲欧美综合在线探花| 日本性感美女写真视频| 国产视频精品资源网站| 97黄网站在线观看| 狍和女人的王色毛片| 欧美精产国品一二三产品区别大吗| 大鸡吧插逼逼视频免费看| 嫩草aⅴ一区二区三区| 51精品视频免费在线观看| 国产黄色大片在线免费播放 | 2018在线福利视频| 国产福利小视频免费观看| 天天日天天舔天天射进去| 天天操天天插天天色| 青娱乐极品视频青青草| 亚洲欧美色一区二区| 亚洲精品久久综合久| 大香蕉大香蕉在线有码 av| 黄工厂精品视频在线观看| 熟女少妇激情五十路| 狠狠躁夜夜躁人人爽天天天天97| 日韩亚洲高清在线观看| 精品黑人巨大在线一区| 国产乱子伦一二三区| 国产成人无码精品久久久电影| 天美传媒mv视频在线观看| 日本免费午夜视频网站| 91精品啪在线免费| 激情色图一区二区三区| 大鸡吧插入女阴道黄色片| 夜夜嗨av蜜臀av| 国产视频网站国产视频| 男人的网址你懂的亚洲欧洲av| 欧洲精品第一页欧洲精品亚洲| 中文字幕国产专区欧美激情| 欧美另类一区二区视频| 在线观看国产网站资源| 久久这里有免费精品| 日本少妇在线视频大香蕉在线观看| 亚洲精品一线二线在线观看 | 狠狠躁狠狠爱网站视频 | 日本性感美女视频网站| 玩弄人妻熟妇性色av少妇| 日本成人一区二区不卡免费在线 | 无套猛戳丰满少妇人妻| av在线观看网址av| 动色av一区二区三区| 欧美一区二区三区久久久aaa| 天堂av在线官网中文| 久久久91蜜桃精品ad| 亚洲伊人久久精品影院一美女洗澡| 五月天久久激情视频| 亚洲 欧美 精品 激情 偷拍 | 亚洲欧美综合另类13p| 自拍 日韩 欧美激情| 亚洲日产av一区二区在线| 嫩草aⅴ一区二区三区| 在线视频国产欧美日韩| 精品老妇女久久9g国产| yy6080国产在线视频| 熟女人妻三十路四十路人妻斩| 国产黄网站在线观看播放| 日本人妻精品久久久久久| 婷婷色中文亚洲网68| 香港一级特黄大片在线播放| 亚洲图库另类图片区| 久久99久久99精品影院| 日韩剧情片电影在线收看| 岛国青草视频在线观看| 黄色在线观看免费观看在线| 91精品视频在线观看免费| 国产一区二区三免费视频| 日韩a级精品一区二区| 色噜噜噜噜18禁止观看| 91色秘乱一区二区三区| 亚洲中文精品字幕在线观看| 国产精品人妻66p| 韩国三级aaaaa高清视频| 福利视频一区二区三区筱慧| 91传媒一区二区三区| 亚洲久久午夜av一区二区| 天天日天天添天天爽| 亚洲高清自偷揄拍自拍| 亚洲日产av一区二区在线| 天天干天天日天天谢综合156| 国产露脸对白在线观看| 精品成人午夜免费看| 亚洲最大黄 嗯色 操 啊| 一区二区三区四区五区性感视频| 东京干手机福利视频| 大鸡吧插逼逼视频免费看| 青青青青视频在线播放| 国产janese在线播放| 国产精品大陆在线2019不卡| 国产麻豆剧果冻传媒app| 日本熟妇喷水xxx| aⅴ五十路av熟女中出| 亚洲日本一区二区三区| 亚洲高清国产一区二区三区| 喷水视频在线观看这里只有精品 | 亚洲欧美成人综合视频| 北条麻妃av在线免费观看| 亚洲 欧美 精品 激情 偷拍 | 午夜精品一区二区三区更新| 强行扒开双腿猛烈进入免费版| 操人妻嗷嗷叫视频一区二区 | 精品久久婷婷免费视频| 午夜精品福利一区二区三区p| 二区中出在线观看老师| 极品性荡少妇一区二区色欲| 在线观看的a站 最新| 888欧美视频在线| 又粗又硬又猛又黄免费30| 中文字幕日韩无敌亚洲精品| 国产精品黄色的av| 我想看操逼黄色大片| 成年人免费看在线视频| 欧洲欧美日韩国产在线| 国产高清在线在线视频| 亚洲中文字幕人妻一区| 亚洲欧美精品综合图片小说| 91chinese在线视频| 日本xx片在线观看| 一个人免费在线观看ww视频| 一区二区三区日韩久久| 98精产国品一二三产区区别| 一区二区免费高清黄色视频| 无忧传媒在线观看视频| 51精品视频免费在线观看| 91p0rny九色露脸熟女| 福利在线视频网址导航| 日本熟妇一区二区x x| 亚洲一级av大片免费观看| 黄色大片免费观看网站| 国产亚洲欧美视频网站| 5528327男人天堂| 色哟哟在线网站入口| 国产乱弄免费视频观看| 成人av天堂丝袜在线观看| 国产精品一区二区三区蜜臀av| 日本人妻欲求不满中文字幕| 欧美精品黑人性xxxx| 污污小视频91在线观看| 美女被肏内射视频网站| 888欧美视频在线| 中英文字幕av一区| 欧美区一区二区三视频| 丰满少妇翘臀后进式| 特黄老太婆aa毛毛片| 国产男女视频在线播放| 亚洲综合色在线免费观看| 欧亚日韩一区二区三区观看视频| 99热久久这里只有精品| 扒开让我视频在线观看| 欧美国品一二三产区区别| 亚洲av一妻不如妾| 欧美少妇性一区二区三区| 亚洲公开视频在线观看| 天天干天天啪天天舔| 天天操天天干天天日狠狠插| 国产成人精品久久二区91| 在线观看国产免费麻豆| 午夜国产福利在线观看| 亚洲的电影一区二区三区| 最新欧美一二三视频| 午夜久久久久久久99| 福利午夜视频在线观看| 骚逼被大屌狂草视频免费看| 这里只有精品双飞在线播放| 欧美精品资源在线观看| 免费观看污视频网站| 国产亚洲国产av网站在线| 色秀欧美视频第一页| 在线观看一区二区三级| 99的爱精品免费视频| 亚洲精品欧美日韩在线播放| 日韩av中文在线免费观看| 国产精品久久综合久久| 中国黄色av一级片| 91精品国产观看免费| 午夜毛片不卡免费观看视频| 真实国模和老外性视频| 日本a级视频老女人| 91九色porny蝌蚪国产成人| 男生用鸡操女生视频动漫| 欧美中文字幕一区最新网址| av天堂中文免费在线| 黄色视频在线观看高清无码| 午夜大尺度无码福利视频| 日本脱亚入欧是指什么| 亚洲成人av一区久久| 日本少妇精品免费视频| 中文字幕高清在线免费播放| 青娱乐蜜桃臀av色| 欧美特色aaa大片| 任你操任你干精品在线视频| 日日夜夜精品一二三| 国产极品美女久久久久久| 传媒在线播放国产精品一区| 国产一级精品综合av| 午夜在线观看一区视频| 日韩av免费观看一区| 日韩一区二区电国产精品| 国产成人精品午夜福利训2021| 亚洲另类图片蜜臀av| 极品粉嫩小泬白浆20p主播| 肏插流水妹子在线乐播下载| 欧美在线精品一区二区三区视频| 亚洲熟妇无码一区二区三区| 五十路av熟女松本翔子| 亚洲伊人色一综合网| 一区二区三区四区五区性感视频| 欧美va亚洲va天堂va| 国产精品久久久久久久精品视频 | 中文字幕在线观看国产片| 黄色片一级美女黄色片| 国产午夜亚洲精品麻豆| 国产黄色高清资源在线免费观看 | 五月婷婷在线观看视频免费| 成年人午夜黄片视频资源| 日韩无码国产精品强奸乱伦| 日韩人妻丝袜中文字幕| av森泽佳奈在线观看 | 欧美成人小视频在线免费看| 日本熟妇一区二区x x| 黄页网视频在线免费观看| 性感美女诱惑福利视频| 999久久久久999| 国产男女视频在线播放| 最新91九色国产在线观看| 91传媒一区二区三区| 成人av亚洲一区二区| 97人妻无码AV碰碰视频| av在线观看网址av| av线天堂在线观看| 国产麻豆剧传媒精品国产av蜜桃| 最新国产精品拍在线观看| 11久久久久久久久久久| 青青草人人妻人人妻| 亚洲日本一区二区三区| 大胆亚洲av日韩av| 午夜大尺度无码福利视频| 2022国产综合在线干| 国产男女视频在线播放| 美女吃鸡巴操逼高潮视频| 天天草天天色天天干| huangse网站在线观看| 日本最新一二三区不卡在线| 日韩欧美中文国产在线 | 日本三极片视频网站观看| 欧美一区二区三区激情啪啪啪| 欧洲国产成人精品91铁牛tv| 人妻丝袜精品中文字幕| 欧洲欧美日韩国产在线| 国产乱弄免费视频观看| 久久精品美女免费视频| 换爱交换乱高清大片| 欧美成一区二区三区四区| 人妻丝袜av在线播放网址| 蜜桃视频在线欧美一区| 中文字幕高清资源站| 成人精品视频99第一页| 性感美女福利视频网站| 国产精品女邻居小骚货| 大鸡吧插逼逼视频免费看| 国产不卡av在线免费| 极品丝袜一区二区三区| 特一级特级黄色网片| 亚洲推理片免费看网站| 丰满的继坶3中文在线观看| 女警官打开双腿沦为性奴| 97成人免费在线观看网站| 极品丝袜一区二区三区| 中文字幕免费福利视频6| 国产麻豆91在线视频| nagger可以指黑人吗| 91自产国产精品视频| 性色蜜臀av一区二区三区| 99一区二区在线观看| 自拍偷拍日韩欧美一区二区| 成人资源在线观看免费官网| 欧美成人小视频在线免费看| 国产乱子伦一二三区| 亚洲福利精品视频在线免费观看| 中文字幕,亚洲人妻| 伊人综合免费在线视频| 青青青青在线视频免费观看| 超级福利视频在线观看| 少妇系列一区二区三区视频| 亚洲 欧美 精品 激情 偷拍| 欧美黑人巨大性xxxxx猛交| 欧美第一页在线免费观看视频| 一级A一级a爰片免费免会员| 亚洲中文字字幕乱码| 最新国产亚洲精品中文在线| 国产福利在线视频一区| 和邻居少妇愉情中文字幕| 日韩精品电影亚洲一区| 久久久久久性虐视频| 亚洲第一伊人天堂网| 最新国产精品网址在线观看| 国产女人露脸高潮对白视频| 水蜜桃一区二区三区在线观看视频| 最近中文2019年在线看| 精品视频国产在线观看| 日本又色又爽又黄又粗| 麻豆精品成人免费视频| 91试看福利一分钟| 亚洲国产精品中文字幕网站| 黄工厂精品视频在线观看| 日本黄在免费看视频| 欧美在线一二三视频| av男人天堂狠狠干| 日本丰满熟妇大屁股久久| 天天摸天天日天天操| 伊人综合aⅴ在线网| 国产欧美日韩第三页| 91超碰青青中文字幕| 久草视频在线免播放| 欧洲黄页网免费观看| 精品国产午夜视频一区二区| av中文字幕网址在线| 亚洲色偷偷综合亚洲AV伊人| 91免费放福利在线观看| 免费在线观看视频啪啪| 99婷婷在线观看视频| 久久热久久视频在线观看| 国产露脸对白在线观看| 97人人妻人人澡人人爽人人精品| 韩国黄色一级二级三级| av森泽佳奈在线观看| 天天摸天天亲天天舔天天操天天爽| 一个色综合男人天堂| 中文字幕人妻av在线观看| 中文字母永久播放1区2区3区| 狠狠地躁夜夜躁日日躁| 韩国黄色一级二级三级| 欧洲欧美日韩国产在线| 亚洲无码一区在线影院| 国产精品系列在线观看一区二区| 狍和女人的王色毛片| 爱有来生高清在线中文字幕| 精品国产亚洲av一淫| 青青青青草手机在线视频免费看| 操的小逼流水的文章| 国产欧美日韩在线观看不卡| 成人24小时免费视频| 天天操天天干天天艹| 国产片免费观看在线观看| 欧美精品亚洲精品日韩在线| 自拍偷拍 国产资源| 欧美精产国品一二三产品区别大吗| 成人乱码一区二区三区av| 亚洲一区自拍高清免费视频| 日韩激情文学在线视频| 在线免费91激情四射| 91福利在线视频免费观看| 中文字幕 亚洲av| 黄片大全在线观看观看| 一色桃子久久精品亚洲| 欧美在线精品一区二区三区视频| 18禁无翼鸟成人在线 | 国产va精品免费观看| 区一区二区三国产中文字幕| 午夜精品一区二区三区福利视频| chinese国产盗摄一区二区| av森泽佳奈在线观看| 天天操天天插天天色| 国产精品视频资源在线播放| 欧美精品一二三视频| 激情五月婷婷综合色啪| 亚洲精品福利网站图片| 国产成人小视频在线观看无遮挡| a v欧美一区=区三区| 亚洲乱码中文字幕在线| 日韩欧美国产精品91| 国产精品久久久久久久精品视频| 青青伊人一精品视频| 亚洲嫩模一区二区三区| 色呦呦视频在线观看视频| 国产亚洲成人免费在线观看| 午夜在线精品偷拍一区二| 亚洲精品无码色午夜福利理论片| 93精品视频在线观看| 2020久久躁狠狠躁夜夜躁 | 福利视频广场一区二区| 国产高清在线观看1区2区| 91破解版永久免费| 中文字幕第一页国产在线| 久久久久久九九99精品| 精品国产高潮中文字幕| 韩国男女黄色在线观看| 国产福利小视频免费观看| 国产精品探花熟女在线观看| 欧美日韩熟女一区二区三区| 中文字幕av第1页中文字幕| 51国产偷自视频在线播放| 国产精品入口麻豆啊啊啊| 亚洲天堂av最新网址| 夜色撩人久久7777| 动漫精品视频在线观看| 日韩美女搞黄视频免费| 成年人该看的视频黄免费| 亚洲伊人色一综合网| 日本福利午夜电影在线观看| av破解版在线观看| 成人高潮aa毛片免费| 另类av十亚洲av| 精品人妻一二三区久久| 91九色porny国产蝌蚪视频| 中文字幕乱码人妻电影| 国产超码片内射在线| 青青热久免费精品视频在线观看| 熟女人妻在线中出观看完整版| 一区二区三区欧美日韩高清播放| 欧美精产国品一二三区| 熟女人妻三十路四十路人妻斩| 久碰精品少妇中文字幕av| 亚洲精品高清自拍av| 国产女孩喷水在线观看| 中文字幕日韩无敌亚洲精品| 精品suv一区二区69| 免费观看成年人视频在线观看| 都市激情校园春色狠狠| 又粗又硬又猛又黄免费30| 男人天堂色男人av| 久久这里只有精彩视频免费| 国产一线二线三线的区别在哪| 久久丁香婷婷六月天| 视频 国产 精品 熟女 | 国产av国片精品一区二区| 国产午夜亚洲精品不卡在线观看 | 中文字幕第一页国产在线| 欧美女同性恋免费a| 日日摸夜夜添夜夜添毛片性色av| 骚逼被大屌狂草视频免费看| 久久精品亚洲成在人线a| 亚洲综合在线视频可播放| 黄色三级网站免费下载| 成人av天堂丝袜在线观看| 啊啊啊想要被插进去视频| 2o22av在线视频| 国产内射中出在线观看| av中文字幕网址在线| 国产又大又黄免费观看| 亚洲欧美综合另类13p| 中文字幕免费在线免费| 亚洲日产av一区二区在线| 999九九久久久精品| 日韩精品中文字幕福利| 老师让我插进去69AV| 插逼视频双插洞国产操逼插洞| AV天堂一区二区免费试看| 亚洲午夜电影之麻豆| 国产在线一区二区三区麻酥酥 | 亚洲国产在人线放午夜| 色婷婷六月亚洲综合香蕉| 日韩av有码一区二区三区4 | 午夜精品一区二区三区更新| www久久久久久久久久久| 性色av一区二区三区久久久| 国产精品视频欧美一区二区| 北条麻妃av在线免费观看| 久久精品美女免费视频| 日韩欧美国产精品91| 九色porny九色9l自拍视频| 99热99re在线播放| 欧美另类重口味极品在线观看| 人人妻人人澡欧美91精品| 国产卡一卡二卡三乱码手机| 日韩无码国产精品强奸乱伦| 国产91精品拍在线观看| 亚洲一区二区久久久人妻| 97超碰最新免费在线观看| 美女张开腿让男生操在线看| 91自产国产精品视频| 91九色porny蝌蚪国产成人| 99精品视频之69精品视频| 伊人综合aⅴ在线网| 久久久久只精品国产三级| 欧美少妇性一区二区三区| 好了av中文字幕在线| 天天日天天摸天天爱| 男人插女人视频网站| 久久久精品欧洲亚洲av| 天天日天天日天天射天天干| 国产午夜亚洲精品麻豆| 激情内射在线免费观看| 粉嫩av懂色av蜜臀av | 国产精品视频男人的天堂| 人妻凌辱欧美丰满熟妇| 女警官打开双腿沦为性奴| 国产伊人免费在线播放| 大胆亚洲av日韩av| 色婷婷六月亚洲综合香蕉| 亚洲一区二区久久久人妻| 国产精品系列在线观看一区二区| 亚洲在线观看中文字幕av| 国产日本精品久久久久久久| 五十路在线观看完整版| 免费成人av中文字幕| 伊人网中文字幕在线视频| 久久久久久久久久久久久97| 亚洲av日韩高清hd| 日比视频老公慢点好舒服啊| 99精品国产自在现线观看| 在线观看视频一区麻豆| 又粗又硬又猛又爽又黄的| 国际av大片在线免费观看| 日本a级视频老女人| 中文字幕,亚洲人妻| 一区二区三区国产精选在线播放 | 端庄人妻堕落挣扎沉沦| 亚洲在线免费h观看网站| 青青青青青青青青青青草青青| 亚洲成人av在线一区二区| 亚洲av日韩av第一区二区三区| chinese国产盗摄一区二区| 男生舔女生逼逼视频| 国产精品人妻66p| 欧洲精品第一页欧洲精品亚洲| 97超碰最新免费在线观看| 香蕉片在线观看av| 91she九色精品国产| 丰满熟女午夜福利视频| 啪啪啪18禁一区二区三区| 黄网十四区丁香社区激情五月天 | 中文字幕一区二区三区人妻大片| 国产精品三级三级三级| 亚洲成人国产av在线| free性日本少妇| 亚洲av可乐操首页| 久久久久久久一区二区三| 国产又粗又猛又爽又黄的视频美国| 国产精品女邻居小骚货| 午夜精品一区二区三区4| 久久精品美女免费视频| 天天日天天鲁天天操| 欧亚乱色一区二区三区| 韩国亚洲欧美超一级在线播放视频| 欧洲欧美日韩国产在线| 中文字幕人妻一区二区视频| 伊人成人在线综合网| 亚洲视频在线观看高清| 天天日天天添天天爽| 国产视频精品资源网站| 亚洲视频在线观看高清| 亚洲精品ww久久久久久| 韩国爱爱视频中文字幕| 东京热男人的av天堂| 国产一区二区三免费视频| 久久丁香花五月天色婷婷| 老司机你懂得福利视频| www,久久久,com| 黄色片黄色片wyaa| 香港一级特黄大片在线播放| 视频一区 二区 三区 综合| av中文字幕国产在线观看| 天天日天天爽天天爽| 午夜在线一区二区免费| 亚洲va国产va欧美va在线| 成人高清在线观看视频| 免费在线黄色观看网站| 成年人的在线免费视频| 18禁精品网站久久| 狠狠嗨日韩综合久久| 亚洲第17页国产精品| h国产小视频福利在线观看| 免费无毒热热热热热热久| 日韩欧美在线观看不卡一区二区| 青青青青在线视频免费观看| 亚洲国产免费av一区二区三区| 国产第一美女一区二区三区四区| 国产亚洲精品品视频在线| 成人在线欧美日韩国产| 日本成人一区二区不卡免费在线| 91色网站免费在线观看| 久久久人妻一区二区| 欧美一区二区三区乱码在线播放| 午夜久久香蕉电影网| 天天干天天操天天爽天天摸| 日本中文字幕一二区视频| 蜜桃视频在线欧美一区| 午夜免费观看精品视频| 国产大鸡巴大鸡巴操小骚逼小骚逼| 男生舔女生逼逼视频| 日韩伦理短片在线观看| 日韩二区视频一线天婷婷五| 国产九色91在线观看精品| 人妻丝袜精品中文字幕| 18禁网站一区二区三区四区| 2021最新热播中文字幕| 亚洲综合图片20p| 亚洲男人让女人爽的视频| 亚洲嫩模一区二区三区| 在线不卡成人黄色精品| 国产高清97在线观看视频| 亚洲人人妻一区二区三区| 2012中文字幕在线高清| 91免费福利网91麻豆国产精品| 亚洲国产精品中文字幕网站| av大全在线播放免费| 久久香蕉国产免费天天| 91麻豆精品久久久久| 亚洲午夜精品小视频| 97欧洲一区二区精品免费| 中文字幕第1页av一天堂网| 亚洲一级美女啪啪啪| 欧美va亚洲va天堂va| 91精品视频在线观看免费| 小泽玛利亚视频在线观看| 超碰97人人做人人爱| 亚洲中文字幕国产日韩| 无码精品一区二区三区人| 老司机99精品视频在线观看| 亚洲综合一区成人在线| 337p日本大胆欧美人| 无套猛戳丰满少妇人妻| 全国亚洲男人的天堂| gogo国模私拍视频| 韩国亚洲欧美超一级在线播放视频| 中文字幕午夜免费福利视频| 婷婷六月天中文字幕| 不卡一不卡二不卡三| 久久亚洲天堂中文对白| 日本免费午夜视频网站| 色吉吉影音天天干天天操| 91亚洲精品干熟女蜜桃频道| 久久久久久性虐视频| 在线观看视频污一区| 日韩二区视频一线天婷婷五| 色哟哟国产精品入口| 男人操女人逼逼视频网站| 国产精彩福利精品视频| 精品视频国产在线观看| 成人av在线资源网站| 在线免费观看av日韩| 亚洲中文字幕国产日韩| 2020韩国午夜女主播在线| 欧美熟妇一区二区三区仙踪林| 亚洲在线免费h观看网站| 青青青视频自偷自拍38碰| 成人伊人精品色xxxx视频| 免费在线观看视频啪啪| 亚洲蜜臀av一区二区三区九色| 日本啪啪啪啪啪啪啪| 五月天中文字幕内射| 国产又大又黄免费观看| 青青操免费日综合视频观看| 国产乱子伦精品视频潮优女| 女同性ⅹxx女同hd| 欧美精品 日韩国产| av久久精品北条麻妃av观看| 国产免费av一区二区凹凸四季| 日韩一个色综合导航| 亚洲变态另类色图天堂网| 免费手机黄页网址大全| 91一区精品在线观看| 少妇人妻二三区视频| 中文字幕一区的人妻欧美日韩| 日韩欧美中文国产在线| 亚洲天堂精品福利成人av| 自拍偷拍日韩欧美一区二区| 欧美偷拍自拍色图片| 免费国产性生活视频| 成年午夜影片国产片| 欧美日韩高清午夜蜜桃大香蕉| 北条麻妃av在线免费观看| 男生舔女生逼逼的视频| 久草电影免费在线观看| 91精品国产91久久自产久强| 亚洲国产成人av在线一区| 日韩精品激情在线观看| 日本18禁久久久久久| 亚洲一区二区三区久久午夜| 啪啪啪啪啪啪啪啪av| 日韩在线中文字幕色| 黄色片黄色片wyaa| 青青草原色片网站在线观看| 亚洲精品av在线观看| 色噜噜噜噜18禁止观看| 大鸡吧插入女阴道黄色片| 欧美日韩亚洲国产无线码| 1000部国产精品成人观看视频 | 黄色资源视频网站日韩| 伊人成人在线综合网| 免费看国产av网站| 免费福利av在线一区二区三区| 亚洲欧美激情国产综合久久久| 亚洲av色图18p| 亚洲激情偷拍一区二区| 中文字幕人妻一区二区视频| 在线国产日韩欧美视频| 成人综合亚洲欧美一区| 端庄人妻堕落挣扎沉沦| 欧美韩国日本国产亚洲| 亚洲男人的天堂a在线| 精内国产乱码久久久久久| 在线视频这里只有精品自拍| 亚洲国产成人av在线一区| 精品国产高潮中文字幕| 夜夜骑夜夜操夜夜奸| 香港一级特黄大片在线播放| 中文字幕日韩无敌亚洲精品| 国产真实乱子伦a视频| 激情内射在线免费观看| 丰满熟女午夜福利视频| 日本一道二三区视频久久| 在线观看视频一区麻豆| 中国产一级黄片免费视频播放| 国产中文字幕四区在线观看| 91精品综合久久久久3d动漫| 2020韩国午夜女主播在线| 在线不卡日韩视频播放| 天天摸天天干天天操科普| ka0ri在线视频| 国产精品污污污久久| 青青青青青青青青青青草青青| 欧美专区第八页一区在线播放| 国产精品久久久久久久女人18| 亚洲精品午夜久久久久| 93精品视频在线观看| www,久久久,com| 扒开腿挺进肉嫩小18禁视频| 日韩美女精品视频在线观看网站| 中文字幕日韩无敌亚洲精品| 一色桃子人妻一区二区三区| 成人免费毛片aaaa| 国产精品成久久久久三级蜜臀av| 又粗又硬又猛又爽又黄的| 国产精品久久久久网| 国产精品黄色的av| 综合精品久久久久97| 久久久精品国产亚洲AV一| 成人精品在线观看视频| 中文字幕国产专区欧美激情| 美女在线观看日本亚洲一区| 91精品啪在线免费| 亚洲另类图片蜜臀av| 国产又粗又猛又爽又黄的视频美国| 青青草成人福利电影| 国产精品伦理片一区二区| 国产精品自拍视频大全| 在线观看的a站 最新| 日美女屁股黄邑视频| 中文字幕1卡1区2区3区| 91在线免费观看成人| 国产成人精品一区在线观看| jiuse91九色视频| 91大屁股国产一区二区| 青青青激情在线观看视频| 青青青青在线视频免费观看| 中文字幕一区二区三区蜜月 | 欧美一区二区三区久久久aaa| 2020国产在线不卡视频| 视频一区 视频二区 视频| 日韩人妻在线视频免费| 人人人妻人人澡人人| 在线成人日韩av电影| 鸡巴操逼一级黄色气| 亚洲成人熟妇一区二区三区| 亚洲丝袜老师诱惑在线观看| 免费成人va在线观看| 免费观看丰满少妇做受| 又大又湿又爽又紧A视频| 美女小视频网站在线| 青青草亚洲国产精品视频| 国产免费av一区二区凹凸四季| 欧美视频一区免费在线| 91桃色成人网络在线观看| 成人24小时免费视频| 夏目彩春在线中文字幕| 亚洲成人精品女人久久久| 三级黄色亚洲成人av| www天堂在线久久| 啪啪啪18禁一区二区三区| 最近中文字幕国产在线| 99热这里只有国产精品6| 大鸡巴操b视频在线| 欧洲日韩亚洲一区二区三区| 天天通天天透天天插| 成人综合亚洲欧美一区| 搡老妇人老女人老熟女| 中文字幕一区二区亚洲一区| 欧美香蕉人妻精品一区二区| 男人操女人的逼免费视频| 欧美aa一级一区三区四区| 午夜激情高清在线观看| 在线观看免费视频网| 国产丰满熟女成人视频| 亚洲综合一区二区精品久久| 久久久久久久久久久免费女人| 国内资源最丰富的网站| 一本一本久久a久久精品综合不卡 亚洲另类综合一区小说 | 2020中文字幕在线播放| 99精品国产免费久久| 天天操天天干天天插| av日韩在线观看大全| 国产伦精品一区二区三区竹菊| 日韩欧美一级aa大片| 一区二区三区激情在线| 一区二区视频在线观看视频在线| 亚洲综合图片20p| av中文字幕网址在线| 久久久久久久精品成人热| 国产麻豆91在线视频| 快点插进来操我逼啊视频| 日本在线一区二区不卡视频| 亚洲国产精品久久久久久6| 国产黄色片在线收看| 天天日天天天天天天天天天天 | 超级碰碰在线视频免费观看| av日韩在线观看大全| 欧美黄片精彩在线免费观看| 欧美专区第八页一区在线播放 | 欧美特级特黄a大片免费| 久久这里只有精彩视频免费| av成人在线观看一区| 日本乱人一区二区三区| 欧美男人大鸡吧插女人视频| 男生舔女生逼逼视频| 天堂av在线最新版在线| 欧美成人一二三在线网| 一区二区三区美女毛片| 天堂资源网av中文字幕| 欧洲欧美日韩国产在线| 偷拍自拍 中文字幕| 18禁美女黄网站色大片下载| 4个黑人操素人视频网站精品91| 97人妻无码AV碰碰视频| 免费国产性生活视频| 精品一区二区三区在线观看| 日韩欧美高清免费在线| 久久久极品久久蜜桃| 久久免费看少妇高潮完整版| 在线免费观看国产精品黄色| 久久这里只有精彩视频免费| 少妇高潮无套内谢麻豆| 国产亚洲四十路五十路| 国产真实灌醉下药美女av福利| 4个黑人操素人视频网站精品91| 天天躁夜夜躁日日躁a麻豆| 啪啪啪18禁一区二区三区| 888亚洲欧美国产va在线播放| 午夜毛片不卡免费观看视频| 大白屁股精品视频国产| 亚洲 欧美 自拍 偷拍 在线| 19一区二区三区在线播放| 一级A一级a爰片免费免会员 | 真实国模和老外性视频| 免费在线观看污污视频网站| 午夜福利人人妻人人澡人人爽| 国产黄色a级三级三级三级| 精品乱子伦一区二区三区免费播| 亚洲无线观看国产高清在线| 美女福利视频导航网站| 特大黑人巨大xxxx| 一级黄片久久久久久久久| 精品乱子伦一区二区三区免费播| 无忧传媒在线观看视频| 国产精品成人xxxx| 日韩精品二区一区久久| 偷青青国产精品青青在线观看| 91人妻精品久久久久久久网站| 国产福利在线视频一区| 一二三中文乱码亚洲乱码one| 亚洲中文字幕国产日韩| 清纯美女在线观看国产| 日韩美女综合中文字幕pp| 六月婷婷激情一区二区三区| 亚洲福利午夜久久久精品电影网| 91大屁股国产一区二区| 欧美日本在线观看一区二区| 玩弄人妻熟妇性色av少妇| 啊啊啊视频试看人妻| 亚洲人妻av毛片在线| 欧美乱妇无乱码一区二区| 日韩欧美国产精品91| 一区二区三区麻豆福利视频| 欲乱人妻少妇在线视频裸| 91av中文视频在线| 中文字幕在线观看极品视频| 99人妻视频免费在线| sw137 中文字幕 在线| 成人高清在线观看视频| 久久久久久cao我的性感人妻| 天天通天天透天天插| 女警官打开双腿沦为性奴| 精品欧美一区二区vr在线观看 | 亚洲av成人免费网站| 中文字幕在线永久免费播放| 国产一级精品综合av| 国产性色生活片毛片春晓精品 | 国产精品人妻66p| 蜜臀av久久久久蜜臀av麻豆| 天天干天天操天天玩天天射| 亚洲国产成人在线一区| 九色视频在线观看免费| 成人福利视频免费在线| 午夜精品久久久久久99热| 久久久极品久久蜜桃| 中文字幕高清在线免费播放| 密臀av一区在线观看| 激情色图一区二区三区| 亚欧在线视频你懂的| 99国内精品永久免费视频| 老司机在线精品福利视频| 肏插流水妹子在线乐播下载| 久久久久久97三级| 日韩一个色综合导航| 自拍偷拍亚洲欧美在线视频| 中文亚洲欧美日韩无线码| 99久久中文字幕一本人| 91国产在线免费播放| 狠狠操狠狠操免费视频| 91精品国产91青青碰| 99精品国产aⅴ在线观看| 亚洲日本一区二区三区| 在线观看操大逼视频| 午夜精品一区二区三区城中村| 亚洲午夜精品小视频| 久久精品亚洲国产av香蕉| 在线国产精品一区二区三区| 亚洲福利天堂久久久久久| 又大又湿又爽又紧A视频| 人人超碰国字幕观看97| 福利视频广场一区二区| 99精品视频在线观看婷婷| 大黑人性xxxxbbbb| 日本在线一区二区不卡视频| 亚洲福利精品视频在线免费观看| 午夜毛片不卡免费观看视频| 哥哥姐姐综合激情小说| 国产麻豆剧果冻传媒app| 懂色av之国产精品| 精彩视频99免费在线| 日本精品视频不卡一二三| 婷婷久久一区二区字幕网址你懂得 | 视频久久久久久久人妻| 国产在线一区二区三区麻酥酥| 香蕉aⅴ一区二区三区| av大全在线播放免费| 男人在床上插女人视频| 天天日天天爽天天干| 伊人日日日草夜夜草| 亚洲 欧美 精品 激情 偷拍| 韩国黄色一级二级三级| 北条麻妃高跟丝袜啪啪| 亚洲午夜电影在线观看| 亚洲天天干 夜夜操| 2021最新热播中文字幕| 亚洲欧美激情中文字幕| 福利午夜视频在线合集| 视频 国产 精品 熟女 | 岳太深了紧紧的中文字幕| 熟女人妻一区二区精品视频| 亚洲av黄色在线网站| 亚洲日产av一区二区在线| 中文亚洲欧美日韩无线码| 亚洲视频在线视频看视频在线| av天堂资源最新版在线看| 午夜在线观看岛国av,com| 在线可以看的视频你懂的 | 一个色综合男人天堂| 国产精品国产三级国产精东| 快点插进来操我逼啊视频| 日本一二三中文字幕| 日韩美女搞黄视频免费| 家庭女教师中文字幕在线播放| 精品高跟鞋丝袜一区二区| 成人亚洲精品国产精品| 视频啪啪啪免费观看| 国产一区二区神马久久| 一区二区三区 自拍偷拍| 成人精品在线观看视频| 懂色av蜜桃a v| 免费手机黄页网址大全| av在线播放国产不卡| 午夜青青草原网在线观看| 亚洲 欧美 精品 激情 偷拍| 少妇被强干到高潮视频在线观看| 天天艹天天干天天操| 大香蕉伊人中文字幕| 国产乱子伦精品视频潮优女| 抽查舔水白紧大视频| 日本精品美女在线观看| 国产在线91观看免费观看| av天堂中文字幕最新| 天天做天天干天天操天天射| 狠狠地躁夜夜躁日日躁| 视频啪啪啪免费观看| 青青热久免费精品视频在线观看 | 成人国产小视频在线观看| 亚洲精品无码久久久久不卡| 久久美欧人妻少妇一区二区三区| 亚洲日产av一区二区在线| 美女操逼免费短视频下载链接| 青青青aaaa免费| 端庄人妻堕落挣扎沉沦| 欧美亚洲中文字幕一区二区三区| 偷偷玩弄新婚人妻h视频| 在线免费观看日本伦理| 国产亚洲视频在线观看| 日韩美女精品视频在线观看网站| 亚洲国产精品久久久久久6| 天天操天天弄天天射| 日韩中文字幕在线播放第二页 | 人妻久久无码中文成人| 93精品视频在线观看| 国产精品久久久黄网站| 国产一区二区火爆视频| 日韩欧美国产精品91| 中文字幕AV在线免费看 | 国产不卡av在线免费| 中文字幕一区二 区二三区四区| 欧美香蕉人妻精品一区二区| 欧美熟妇一区二区三区仙踪林| 午夜美女少妇福利视频| 欧美偷拍亚洲一区二区| 97年大学生大白天操逼| 国产成人一区二区三区电影网站 | 精品乱子伦一区二区三区免费播 | 美女 午夜 在线视频| 日韩特级黄片高清在线看| 国产一区二区久久久裸臀| 黄色中文字幕在线播放| 日韩av大胆在线观看| 2022精品久久久久久中文字幕| 五月色婷婷综合开心网4438| 天天做天天干天天操天天射| 大鸡八强奸视频在线观看| 青青草国内在线视频精选| 熟女国产一区亚洲中文字幕| 熟女在线视频一区二区三区| av高潮迭起在线观看| 岛国毛片视频免费在线观看| 国产欧美精品不卡在线| 青青草在观免费国产精品| 绝顶痉挛大潮喷高潮无码 | 久草视频中文字幕在线观看| 亚洲精品无码久久久久不卡| 一区二区三区的久久的蜜桃的视频| 色狠狠av线不卡香蕉一区二区| 国产又粗又硬又猛的毛片视频| 亚洲一区二区三区久久午夜| 免费成人av中文字幕| 国产日韩一区二区在线看| 97精品视频在线观看| 国产卡一卡二卡三乱码手机| 91综合久久亚洲综合| 欧美黄片精彩在线免费观看 | 亚洲av日韩精品久久久久久hd| 欧美亚洲少妇福利视频| 最后99天全集在线观看| 77久久久久国产精产品| 国产福利在线视频一区| 天天日天天干天天舔天天射| 久久精品亚洲国产av香蕉| 插小穴高清无码中文字幕| 新婚人妻聚会被中出| 中文字幕 亚洲av| avjpm亚洲伊人久久| 国产精品探花熟女在线观看| 亚洲欧美一区二区三区爱爱动图| 伊人精品福利综合导航| 日韩美女搞黄视频免费| 日韩av免费观看一区| 鸡巴操逼一级黄色气| 亚洲福利精品福利精品福利| 国产高清97在线观看视频| 国产高清精品一区二区三区| 欧美一区二区三区高清不卡tv| 精品黑人一区二区三区久久国产 | 玩弄人妻熟妇性色av少妇| 午夜在线精品偷拍一区二 | 在线免费观看靠比视频的网站| 国产精品国产精品一区二区| 国产精品福利小视频a| 亚洲精品中文字幕下载| 黄色成年网站午夜在线观看| 91国偷自产一区二区三区精品| av乱码一区二区三区| 国产一区成人在线观看视频 | 国产精品国产三级麻豆| 91亚洲国产成人精品性色| 色天天天天射天天舔| 精品欧美一区二区vr在线观看| 经典av尤物一区二区| 美洲精品一二三产区区别| 三级等保密码要求条款| 欧美日韩在线精品一区二区三| 夜鲁夜鲁狠鲁天天在线| 中文字幕网站你懂的| 自拍偷区二区三区麻豆| 把腿张开让我插进去视频| 欧美韩国日本国产亚洲| 丰满的子国产在线观看| 巨乳人妻日下部加奈被邻居中出| 欧美精品国产综合久久| 曰本无码人妻丰满熟妇啪啪| 91欧美在线免费观看| 日韩无码国产精品强奸乱伦| av在线shipin| 91一区精品在线观看| 午夜91一区二区三区| 亚洲一区二区三区精品乱码| 熟女在线视频一区二区三区| 午夜极品美女福利视频| 91精品国产黑色丝袜| 欧美黑人与人妻精品| 日韩欧美制服诱惑一区在线| 国产精品精品精品999| 欧美另类z0z变态| 5528327男人天堂| 天天干天天操天天插天天日| 岛国青草视频在线观看| 热99re69精品8在线播放| 18禁美女无遮挡免费| 91免费放福利在线观看| 久久热久久视频在线观看| 中文字幕一区的人妻欧美日韩| 伊人日日日草夜夜草| 大香蕉伊人国产在线| 大鸡巴插入美女黑黑的阴毛| 中文字幕人妻av在线观看| 中文字幕第一页国产在线| 亚洲 欧美 精品 激情 偷拍| 天堂av中文在线最新版| 摧残蹂躏av一二三区| 9色精品视频在线观看| 亚洲综合在线视频可播放| 成人18禁网站在线播放| 免费在线观看视频啪啪| 亚洲av极品精品在线观看| 夏目彩春在线中文字幕| 日本熟女50视频免费| 粉嫩欧美美人妻小视频| 日韩无码国产精品强奸乱伦| 97青青青手机在线视频| 丰满熟女午夜福利视频| 中文字幕一区二 区二三区四区| 适合午夜一个人看的视频| 欧美3p在线观看一区二区三区| 成年人啪啪视频在线观看| 青青青爽视频在线播放| 亚洲高清免费在线观看视频| 欧美日韩精品永久免费网址| 40道精品招牌菜特色| 欧美另类重口味极品在线观看| 扒开让我视频在线观看| 国产乱子伦精品视频潮优女| 日韩欧美国产一区ab| 中文字幕之无码色多多| 九九视频在线精品播放| 香港一级特黄大片在线播放| 97超碰人人搞人人| 日韩av有码一区二区三区4| 五月天久久激情视频| 韩国三级aaaaa高清视频| 北条麻妃肉色丝袜视频| 中国黄色av一级片| 天堂中文字幕翔田av| 老司机在线精品福利视频| 98精产国品一二三产区区别| 蜜桃专区一区二区在线观看| 国产一级精品综合av| 超级av免费观看一区二区三区| 国产成人精品久久二区91| 做爰视频毛片下载蜜桃视频1| 在线观看911精品国产| 天天日天天日天天擦| 中文字幕 亚洲av| 人人妻人人爽人人添夜| 人妻少妇亚洲一区二区| 福利午夜视频在线合集| 天天操天天干天天艹| 白嫩白嫩美女极品国产在线观看| 亚洲一级av大片免费观看| 国产在线观看免费人成短视频| 中文字幕人妻一区二区视频| 免费看国产av网站| 99婷婷在线观看视频| 天堂女人av一区二区| avjpm亚洲伊人久久| 97少妇精品在线观看| 漂亮 人妻被中出中文| 91福利视频免费在线观看| 日日操综合成人av| 亚洲最大黄 嗯色 操 啊| av中文字幕在线观看第三页| 中国视频一区二区三区| 国产综合视频在线看片| 老司机午夜精品视频资源| 色综合久久无码中文字幕波多| 懂色av之国产精品| 久久久久久久亚洲午夜综合福利| 亚洲成人线上免费视频观看| 日本女人一级免费片| 亚洲熟妇x久久av久久| 国产黄色高清资源在线免费观看| 亚洲国产精品美女在线观看| 成熟熟女国产精品一区| 91人妻精品久久久久久久网站| 欧美精品欧美极品欧美视频| 日本熟妇丰满厨房55| 在线观看黄色成年人网站| 成年人该看的视频黄免费| 成年人中文字幕在线观看| 人妻熟女在线一区二区| 欧美日韩激情啪啪啪| 黄色男人的天堂视频| 国产使劲操在线播放| 亚洲 国产 成人 在线| 中文字幕在线乱码一区二区| 夜夜操,天天操,狠狠操| 日本精品一区二区三区在线视频。| 国产精品人久久久久久| 啊啊好慢点插舔我逼啊啊啊视频| 免费69视频在线看| 成年人该看的视频黄免费| 亚洲粉嫩av一区二区三区| 亚洲欧洲一区二区在线观看| 午夜精品久久久久麻豆影视| 日韩熟女系列一区二区三区| 性欧美日本大妈母与子| 制丝袜业一区二区三区| 97人妻总资源视频| 免费成人va在线观看| 国产高清精品极品美女| 亚洲精品午夜久久久久| 免费观看国产综合视频| 亚洲av黄色在线网站| 91在线免费观看成人| 免费69视频在线看| 黄片大全在线观看观看| 五十路老熟女码av| 精品欧美一区二区vr在线观看| 强行扒开双腿猛烈进入免费版| 国产老熟女伦老熟妇ⅹ| 婷婷久久一区二区字幕网址你懂得| 老司机福利精品视频在线| 精产国品久久一二三产区区别 | 熟女国产一区亚洲中文字幕| 97小视频人妻一区二区| 国产精品成人xxxx| 亚洲av成人网在线观看| 在线观看亚洲人成免费网址| 亚洲人妻av毛片在线| 亚洲av无硬久久精品蜜桃| av网站色偷偷婷婷网男人的天堂| 99热久久这里只有精品| 黄色成人在线中文字幕| 四川五十路熟女av| 国产在线一区二区三区麻酥酥 | 美女福利写真在线观看视频| 欧美激情电影免费在线| 亚洲人妻av毛片在线| 岛国一区二区三区视频在线| 在线新三级黄伊人网| 久草视频福利在线首页| av在线免费资源站| 日韩在线中文字幕色| 天天色天天爱天天爽| 久久久久久久久久久久久97| 亚洲国产40页第21页| 国产va在线观看精品| av天堂资源最新版在线看| 国产一区二区三免费视频| 国产视频精品资源网站| 天天日天天鲁天天操| 大屁股熟女一区二区三区| 天堂av在线播放免费| 成人av久久精品一区二区| yellow在线播放av啊啊啊| 日本阿v视频在线免费观看| 亚洲精品三级av在线免费观看| 国产密臀av一区二区三| 日本性感美女视频网站| 免费观看丰满少妇做受| 91在线视频在线精品3| 亚洲欧美另类自拍偷拍色图| 视频一区二区在线免费播放| 成人色综合中文字幕| 欧美黑人与人妻精品| av在线观看网址av| 特大黑人巨大xxxx| 亚洲欧美一卡二卡三卡| 国产精品黄大片在线播放| 青青青青青青草国产| 精品久久久久久久久久久久人妻| 999九九久久久精品| 亚洲日本一区二区久久久精品| 日韩成人性色生活片| 2025年人妻中文字幕乱码在线| 日本少妇人妻xxxxxhd| 亚洲国际青青操综合网站| av在线免费中文字幕| 精品一区二区三区欧美| 天天日天天鲁天天操| 成年人的在线免费视频| 欧美国品一二三产区区别| 亚洲一区二区久久久人妻| 天天干狠狠干天天操| 精品国产乱码一区二区三区乱| 在线国产日韩欧美视频| 成人午夜电影在线观看 久久| 99热这里只有国产精品6| 婷婷激情四射在线观看视频| 人人超碰国字幕观看97| 快插进小逼里大鸡吧视频| av俺也去在线播放| xxx日本hd高清| 少妇被强干到高潮视频在线观看| 无码日韩人妻精品久久| 国产一区二区在线欧美| 亚洲av黄色在线网站| 亚洲精品高清自拍av| 视频一区 二区 三区 综合| 亚洲va国产va欧美精品88| 中文字幕第三十八页久久| 在线免费观看视频一二区| 97a片免费在线观看| 熟女人妻三十路四十路人妻斩| 自拍偷拍vs一区二区三区| jiujiure精品视频在线| 天天操夜夜骑日日摸| 欧美激情精品在线观看| 中文字幕日韩91人妻在线| 一级黄色av在线观看| 欧美交性又色又爽又黄麻豆| 一区二区三区四区视频| 国产亚洲四十路五十路| 日本脱亚入欧是指什么| 福利视频一区二区三区筱慧| 91国偷自产一区二区三区精品| ka0ri在线视频| 粉嫩av懂色av蜜臀av| 国产三级影院在线观看| 黑人乱偷人妻中文字幕| 五十路丰满人妻熟妇| 女警官打开双腿沦为性奴| 岛国青草视频在线观看| 亚洲人妻30pwc| 国产aⅴ一线在线观看| 任我爽精品视频在线播放| 欧美精品久久久久久影院| chinese国产盗摄一区二区| 亚洲国产免费av一区二区三区 | 红桃av成人在线观看| 强行扒开双腿猛烈进入免费版 | 91大神福利视频网| 无码日韩人妻精品久久| 免费国产性生活视频| 青青青青青青青青青国产精品视频| 98精产国品一二三产区区别| 国产成人小视频在线观看无遮挡 | 天天躁日日躁狠狠躁躁欧美av | 亚洲推理片免费看网站| 国产黄色大片在线免费播放| 好吊操视频这里只有精品| eeuss鲁片一区二区三区| 97色视频在线观看| 国产黄色片蝌蚪九色91| 青青色国产视频在线| 大鸡吧插入女阴道黄色片| 91she九色精品国产| 亚洲伊人久久精品影院一美女洗澡| 天天操天天弄天天射| 丰满熟女午夜福利视频| 五月激情婷婷久久综合网| 亚洲欧美精品综合图片小说| 97年大学生大白天操逼| 国产欧美精品一区二区高清| 国产欧美日韩第三页| 亚洲国产免费av一区二区三区| 人人在线视频一区二区| 青青青青青操视频在线观看| 国产熟妇乱妇熟色T区| 久久免看30视频口爆视频| 伊人情人综合成人久久网小说| 国产va在线观看精品| 亚洲欧美福利在线观看| 色97视频在线播放| 国产综合精品久久久久蜜臀| 肏插流水妹子在线乐播下载| 免费在线观看视频啪啪| 天天综合天天综合天天网| 中文字幕日本人妻中出| 精产国品久久一二三产区区别| 日韩精品啪啪视频一道免费| 日韩欧美一级精品在线观看| 日韩成人综艺在线播放| 亚洲午夜电影之麻豆| 玩弄人妻熟妇性色av少妇| 九九视频在线精品播放| 性感美女诱惑福利视频| 欧美女同性恋免费a| 在线亚洲天堂色播av电影| 91国语爽死我了不卡| av手机在线免费观看日韩av| 国产成人综合一区2区| 国产麻豆国语对白露脸剧情| 亚洲av无码成人精品区辽| 亚洲丝袜老师诱惑在线观看| aiss午夜免费视频| 国产精品午夜国产小视频| 一区二区三区蜜臀在线| 亚洲嫩模一区二区三区| 91超碰青青中文字幕| 黄片三级三级三级在线观看| sspd152中文字幕在线| 99精品久久久久久久91蜜桃| 端庄人妻堕落挣扎沉沦| 性色av一区二区三区久久久| 粗大的内捧猛烈进出爽大牛汉子| 91极品大一女神正在播放| 日本少妇精品免费视频| 日视频免费在线观看| 一区二区在线观看少妇| 老司机99精品视频在线观看| 亚洲高清免费在线观看视频| 红桃av成人在线观看| 久久这里只有精品热视频| 91大屁股国产一区二区| 福利片区一区二体验区| 黄色片黄色片wyaa| 亚洲一区二区三区av网站| 91福利在线视频免费观看| 男女啪啪视频免费在线观看 | 国产性生活中老年人视频网站| 婷婷色中文亚洲网68| 午夜场射精嗯嗯啊啊视频| 免费成人va在线观看| 91久久人澡人人添人人爽乱| 日韩成人免费电影二区| 91人妻精品久久久久久久网站 | 一区二区三区日韩久久| 老熟妇xxxhd老熟女| 亚洲国产精品久久久久久6| 一区二区三区久久中文字幕| 中文字幕日韩精品就在这里| 人妻久久无码中文成人| 国产九色91在线观看精品| 一区二区三区麻豆福利视频| 在线播放一区二区三区Av无码| 日韩亚国产欧美三级涩爱| 中文字幕一区二区人妻电影冢本| 亚洲av极品精品在线观看| 最新国产精品拍在线观看| av无限看熟女人妻另类av| 国产精品人妻一区二区三区网站| 免费黄色成人午夜在线网站| 天天日天天爽天天爽| 2020中文字幕在线播放| 亚洲高清免费在线观看视频| 黄色在线观看免费观看在线| 人人爱人人妻人人澡39| 久久人人做人人妻人人玩精品vr| 天天干天天操天天玩天天射 | 在线观看免费岛国av| 日本在线不卡免费视频| 韩国男女黄色在线观看| 青青草成人福利电影| 国产精品一区二区三区蜜臀av | 国产在线观看黄色视频| 最新国产亚洲精品中文在线| 久草视频中文字幕在线观看| 18禁美女羞羞免费网站| 视频一区 视频二区 视频| 91高清成人在线视频| 国产精品人妻一区二区三区网站 | 欧美一区二区三区在线资源 | 91九色porny国产在线| 熟女人妻三十路四十路人妻斩| 91免费福利网91麻豆国产精品| 91综合久久亚洲综合| av无限看熟女人妻另类av| 男大肉棒猛烈插女免费视频 | 韩国一级特黄大片做受| 无忧传媒在线观看视频| 最新97国产在线视频| av中文字幕电影在线看| 国产精品黄大片在线播放| 久久精品国产亚洲精品166m| 欧美另类重口味极品在线观看| 在线观看视频一区麻豆| 青青草视频手机免费在线观看| 一色桃子久久精品亚洲| 初美沙希中文字幕在线| 日噜噜噜夜夜噜噜噜天天噜噜噜| 国产三级影院在线观看| 色爱av一区二区三区| 一区二区三区久久中文字幕| 狠狠躁狠狠爱网站视频| 91麻豆精品久久久久| 亚洲 清纯 国产com| 红桃av成人在线观看| 中国黄片视频一区91| 青青青国产免费视频| 天天干天天操天天玩天天射 | 2012中文字幕在线高清| 青青青青操在线观看免费| 这里只有精品双飞在线播放| 18禁美女黄网站色大片下载| 热99re69精品8在线播放| sejizz在线视频| 亚洲激情,偷拍视频| 成人激情文学网人妻| 护士特殊服务久久久久久久| 91精品国产黑色丝袜| 激情五月婷婷综合色啪| 国产女人叫床高潮大片视频| 亚洲av第国产精品| 国产内射中出在线观看| 国产精彩福利精品视频| 大香蕉大香蕉在线有码 av| 精品老妇女久久9g国产| 精品人妻伦一二三区久| 少妇高潮一区二区三区| 岛国毛片视频免费在线观看| 四川乱子伦视频国产vip| 天天干狠狠干天天操| 中文 成人 在线 视频| 天天艹天天干天天操| 日韩影片一区二区三区不卡免费| 中字幕人妻熟女人妻a62v网| 2o22av在线视频| 中文字幕 码 在线视频| 青青草原色片网站在线观看| 最近中文字幕国产在线| 亚洲国产香蕉视频在线播放| 黄色黄色黄片78在线| 91精品国产观看免费| 777奇米久久精品一区| 懂色av之国产精品| 日韩剧情片电影在线收看| 成人网18免费视频版国产| 中文字幕高清免费在线人妻 | 久久久久久久精品成人热| 亚洲另类在线免费观看| 中文字幕日韩人妻在线三区| 黑人巨大的吊bdsm| 任你操任你干精品在线视频| 噜噜色噜噜噜久色超碰| 亚洲 欧美 精品 激情 偷拍| 日韩不卡中文在线视频网站| 少妇高潮无套内谢麻豆| 一区二区在线观看少妇| 日韩美女精品视频在线观看网站| 3337p日本欧洲大胆色噜噜| 国产污污污污网站在线| 真实国产乱子伦一区二区| 久久尻中国美女视频| 久久艹在线观看视频| 91精品国产观看免费| av新中文天堂在线网址| 美女日逼视频免费观看| 亚洲在线一区二区欧美| 亚洲免费av在线视频| 日本精品视频不卡一二三| 和邻居少妇愉情中文字幕| 天天色天天爱天天爽| 国产使劲操在线播放| 国产视频网站一区二区三区| 日本一区二区三区免费小视频| 天天操,天天干,天天射| 成年人的在线免费视频| 97国产在线av精品| 91综合久久亚洲综合| 一区二区三区蜜臀在线| 日日爽天天干夜夜操| 天天做天天干天天舔| 美女吃鸡巴操逼高潮视频| 日韩无码国产精品强奸乱伦| av网址在线播放大全| 亚洲Av无码国产综合色区| 少妇人妻100系列| 成人18禁网站在线播放| huangse网站在线观看| 亚洲黄色av网站免费播放| 日韩加勒比东京热二区| 99精品久久久久久久91蜜桃| 欧美熟妇一区二区三区仙踪林| 免费在线看的黄网站| 国产精品污污污久久| 亚洲激情,偷拍视频| 91p0rny九色露脸熟女| 青青青爽视频在线播放| 男人插女人视频网站| 国产一线二线三线的区别在哪 | 大香蕉大香蕉在线看| 五色婷婷综合狠狠爱| 天天草天天色天天干| 男人天堂av天天操| 亚洲国产在线精品国偷产拍| 美女 午夜 在线视频| 美女 午夜 在线视频| 在线亚洲天堂色播av电影| 日韩a级黄色小视频| 91超碰青青中文字幕| 在线成人日韩av电影| japanese日本熟妇另类| 午夜在线观看一区视频| 4个黑人操素人视频网站精品91| 亚洲va欧美va人人爽3p| japanese日本熟妇另类| 最新97国产在线视频| 欧美一区二区三区高清不卡tv | 国产又大又黄免费观看| 阿v天堂2014 一区亚洲| 黑人性生活视频免费看| 在线观看一区二区三级| 亚洲成高清a人片在线观看| 国产janese在线播放| 欧美va亚洲va天堂va| 亚洲免费成人a v| 久久久极品久久蜜桃| 欧美一区二区三区乱码在线播放 | 91国内视频在线观看| 性欧美日本大妈母与子| 93精品视频在线观看| 亚洲最大黄 嗯色 操 啊| 又大又湿又爽又紧A视频| 777奇米久久精品一区| 78色精品一区二区三区| 影音先锋女人av噜噜色| 丁香花免费在线观看中文字幕| 一区二区三区激情在线| 精品国产乱码一区二区三区乱| 青青操免费日综合视频观看| 免费成人av中文字幕| 日本少妇人妻xxxxx18| 啊啊好大好爽啊啊操我啊啊视频| 久草视频首页在线观看| 适合午夜一个人看的视频| 亚洲av一妻不如妾| 美味人妻2在线播放| 一区二区三区毛片国产一区| 成年人黄色片免费网站| 天天日天天鲁天天操| 精品人妻每日一部精品| 99久久超碰人妻国产| 男女啪啪啪啪啪的网站| 国产精品黄大片在线播放| 中出中文字幕在线观看| 成人亚洲精品国产精品| 女同久久精品秋霞网| 亚洲在线免费h观看网站| 亚洲 欧美 自拍 偷拍 在线| 亚洲 中文 自拍 另类 欧美| 久久精品在线观看一区二区| 在线观看成人国产电影| 青青草成人福利电影| 天天夜天天日天天日| 国产露脸对白在线观看| 青娱乐最新视频在线| 久草视频福利在线首页| 岛国av高清在线成人在线| 欧洲欧美日韩国产在线| 精品91自产拍在线观看一区| 国产欧美精品不卡在线| 国产麻豆剧传媒精品国产av蜜桃| 色秀欧美视频第一页| 美洲精品一二三产区区别| 午夜dv内射一区区| 国产午夜男女爽爽爽爽爽视频| 五十路在线观看完整版| 密臀av一区在线观看| 精品老妇女久久9g国产| aiss午夜免费视频| 中国老熟女偷拍第一页| 精品国产午夜视频一区二区| 国产亚洲精品视频合集| 国产精品一区二区av国| 玖玖一区二区在线观看| 大骚逼91抽插出水视频| 5528327男人天堂| 夜夜骑夜夜操夜夜奸| 中文字幕AV在线免费看 | 91精品国产高清自在线看香蕉网| 天天操,天天干,天天射| 97人妻夜夜爽二区欧美极品| 影音先锋女人av噜噜色| 在线视频国产欧美日韩| 欧美一区二区三区高清不卡tv| 欧美精品亚洲精品日韩在线| 国产一线二线三线的区别在哪 | 日韩av中文在线免费观看| 日韩精品中文字幕在线| 亚洲欧美人精品高清| 一本久久精品一区二区| 亚洲视频在线观看高清| 国产精品久久久久网| 国产精品久久久久久久女人18| 日韩亚洲高清在线观看| 精品国产成人亚洲午夜| 在线免费观看99视频| 欧美成人猛片aaaaaaa| 99国内小视频在现欢看| 黑人借宿ntr人妻的沦陷2| 午夜福利人人妻人人澡人人爽 | 中文字幕高清免费在线人妻| 天天操天天干天天插| 天天日天天做天天日天天做| 天天日天天干天天要| 午夜青青草原网在线观看| 精品视频一区二区三区四区五区| 婷婷色国产黑丝少妇勾搭AV| 人妻久久无码中文成人| 精品91自产拍在线观看一区| 视频一区二区在线免费播放| 韩国女主播精品视频网站| 国产之丝袜脚在线一区二区三区| av欧美网站在线观看| 精品久久久久久久久久久a√国产| 日韩人妻xxxxx| 天堂v男人视频在线观看| 一区二区三区的久久的蜜桃的视频 | 91人妻精品久久久久久久网站| 国际av大片在线免费观看| 精品亚洲中文字幕av| 揄拍成人国产精品免费看视频| 亚洲1卡2卡三卡4卡在线观看 | 久久一区二区三区人妻欧美| 国内自拍第一页在线观看| 国产久久久精品毛片| 粉嫩小穴流水视频在线观看| 亚洲精品国产在线电影| 日本免费午夜视频网站| 国产精品探花熟女在线观看| AV天堂一区二区免费试看| 人妻少妇性色欲欧美日韩| 国产精品午夜国产小视频| 日韩二区视频一线天婷婷五| japanese日本熟妇另类| 成人蜜桃美臀九一一区二区三区| 天天做天天爽夜夜做少妇| 亚洲男人让女人爽的视频| 水蜜桃国产一区二区三区| 亚洲欧美清纯唯美另类| sejizz在线视频| 国产精品女邻居小骚货| 最新日韩av传媒在线| 欧洲亚洲欧美日韩综合| 亚洲国产成人最新资源| 亚洲国产在线精品国偷产拍| 天天操天天干天天艹| 久久久久久99国产精品| 国产熟妇人妻ⅹxxxx麻豆| 人妻熟女在线一区二区| 欧美性感尤物人妻在线免费看| av乱码一区二区三区| 人妻熟女在线一区二区| 亚洲1069综合男同| 国产露脸对白在线观看| 国产精品人妻66p| 早川濑里奈av黑人番号| 天天干天天日天天谢综合156| 亚洲精品 日韩电影| 亚洲变态另类色图天堂网| 女同性ⅹxx女同h偷拍| 超级av免费观看一区二区三区| 欧美日韩情色在线观看| 夫妻在线观看视频91| 亚洲的电影一区二区三区| 国产成人一区二区三区电影网站| 国产一区二区神马久久| 日韩二区视频一线天婷婷五| 蜜臀成人av在线播放| 老师让我插进去69AV| 在线观看国产免费麻豆| 日本脱亚入欧是指什么| 免费在线观看污污视频网站| 自拍偷拍亚洲欧美在线视频| 91在线视频在线精品3| 中文字幕第三十八页久久| 91麻豆精品久久久久| 婷婷久久久综合中文字幕| 人妻丝袜榨强中文字幕| 黑人乱偷人妻中文字幕| 午夜在线精品偷拍一区二| 欧美特级特黄a大片免费| 午夜精品福利一区二区三区p| 青青青爽视频在线播放| 成人24小时免费视频| 操人妻嗷嗷叫视频一区二区 | 亚洲国产成人在线一区| 青青青国产免费视频| 亚洲Av无码国产综合色区| www骚国产精品视频| 影音先锋女人av噜噜色| 天天躁夜夜躁日日躁a麻豆| 国产janese在线播放| 欧美成人精品欧美一级黄色| 夜夜骑夜夜操夜夜奸| 久久三久久三久久三久久| 国产麻豆剧果冻传媒app| 国产欧美精品免费观看视频| 天天摸天天干天天操科普| 日本人竟这样玩学生妹| 91九色国产porny蝌蚪| 国产黄色大片在线免费播放| 国产成人自拍视频播放| 久久久精品精品视频视频| 中文字幕免费福利视频6| 女生自摸在线观看一区二区三区 | 国产chinesehd精品麻豆| 亚洲成高清a人片在线观看| 天干天天天色天天日天天射| 国产亚洲精品品视频在线| 精品91高清在线观看| 亚洲2021av天堂| 男女啪啪啪啪啪的网站| 成人精品视频99第一页| 无套猛戳丰满少妇人妻| 国产午夜无码福利在线看| AV天堂一区二区免费试看| 欧美一级色视频美日韩| 大鸡吧插入女阴道黄色片| 欧美日韩人妻久久精品高清国产| 人妻熟女中文字幕aⅴ在线| 骚货自慰被发现爆操| 99精品一区二区三区的区| 888欧美视频在线| 特大黑人巨大xxxx| 黄色无码鸡吧操逼视频| 沙月文乃人妻侵犯中文字幕在线| 青娱乐在线免费视频盛宴 | 日本一本午夜在线播放| 中文字幕AV在线免费看 | 国产麻豆剧果冻传媒app| 人妻久久无码中文成人| 99久久久无码国产精品性出奶水| gav成人免费播放| 91综合久久亚洲综合| 无码日韩人妻精品久久| 自拍偷拍亚洲精品第2页| 日本少妇精品免费视频| 中文字幕日韩精品日本| 99re国产在线精品| 888亚洲欧美国产va在线播放| 亚洲成人国产综合一区| 男生舔女生逼逼视频| 亚洲av一妻不如妾| 欧亚乱色一区二区三区| 成人精品在线观看视频| 日韩人妻在线视频免费| 91p0rny九色露脸熟女| 亚洲国产精品久久久久蜜桃| 97超碰国语国产97超碰| 中文字幕在线永久免费播放 | 久久久精品国产亚洲AV一| 国产实拍勾搭女技师av在线| 1769国产精品视频免费观看| 亚洲av在线观看尤物| av在线免费中文字幕| 五月精品丁香久久久久福利社 | 精产国品久久一二三产区区别| 国产成人小视频在线观看无遮挡| 日本午夜久久女同精女女| 久久三久久三久久三久久| 亚洲一区av中文字幕在线观看| 久草视频在线看免费| 首之国产AV医生和护士小芳| 4个黑人操素人视频网站精品91| 欧美伊人久久大香线蕉综合| 亚洲国产欧美国产综合在线| 亚洲欧美激情人妻偷拍| 成人午夜电影在线观看 久久| 国产欧美精品不卡在线| 国产精品自拍在线视频| 欧美日韩熟女一区二区三区| 一区二区三区四区视频在线播放| 色爱av一区二区三区| 国产日韩欧美视频在线导航| 亚洲va国产va欧美精品88| 极品性荡少妇一区二区色欲| 亚洲va天堂va国产va久| 亚洲Av无码国产综合色区| 亚洲午夜福利中文乱码字幕| 熟女人妻在线中出观看完整版| av老司机亚洲一区二区| 精品91高清在线观看| 日本女大学生的黄色小视频| 成人网18免费视频版国产| 一区二区视频视频视频| 九色精品视频在线播放| 日韩欧美国产一区不卡| 国产精品熟女久久久久浪潮| 久久久精品999精品日本 | 97色视频在线观看| 一级a看免费观看网站| 亚洲男人的天堂a在线| 国产精品视频欧美一区二区| 日比视频老公慢点好舒服啊| 2022国产精品视频| 日本美女性生活一级片| 啊啊啊想要被插进去视频| 全国亚洲男人的天堂| 97超碰最新免费在线观看| 直接观看免费黄网站| 欧美中文字幕一区最新网址| 国产av自拍偷拍盛宴| 全国亚洲男人的天堂| yy96视频在线观看| 扒开腿挺进肉嫩小18禁视频| 黑人进入丰满少妇视频| 欧美成人精品欧美一级黄色| 不卡精品视频在线观看| 都市激情校园春色狠狠| 欧美日韩人妻久久精品高清国产| 日日夜夜精品一二三| 啪啪啪18禁一区二区三区| 日本美女性生活一级片| 亚洲av第国产精品| 欧美日韩情色在线观看| 亚洲国产欧美国产综合在线| 3337p日本欧洲大胆色噜噜| caoporm超碰国产| 影音先锋女人av噜噜色| 欧美xxx成人在线| 亚洲粉嫩av一区二区三区| 大香蕉伊人国产在线| 亚洲狠狠婷婷综合久久app| 亚洲中文字幕乱码区| 亚洲欧美综合在线探花| 老熟妇凹凸淫老妇女av在线观看| 一区二区三区美女毛片| 天天日天天爽天天干| 午夜dv内射一区区| 做爰视频毛片下载蜜桃视频1| 大香蕉大香蕉在线看| 日本后入视频在线观看 | 青青青激情在线观看视频| 2018最新中文字幕在线观看| 亚洲视频在线观看高清| 亚洲国产精品久久久久久6| 熟女在线视频一区二区三区| 大香蕉日本伊人中文在线| 国产成人精品福利短视频| 一本一本久久a久久精品综合不卡| 国产精品福利小视频a| 欧美日本在线视频一区| 国产精品中文av在线播放| 少妇一区二区三区久久久| 亚洲国产欧美一区二区丝袜黑人| 亚洲中文精品人人免费| 自拍偷拍 国产资源| 亚洲熟女久久久36d| 国产精品久久久久久美女校花| 日韩av有码中文字幕| 在线观看911精品国产| 亚洲人妻av毛片在线| 最新激情中文字幕视频| yy96视频在线观看| 91亚洲国产成人精品性色| av日韩在线免费播放| 亚洲欧美清纯唯美另类| 91色网站免费在线观看| 伊人开心婷婷国产av| 国产精品3p和黑人大战| 国产福利小视频免费观看| 鸡巴操逼一级黄色气| 在线播放 日韩 av| 中文字幕 码 在线视频| 精品国产成人亚洲午夜| 最新91精品视频在线| av在线免费中文字幕| 免费观看成年人视频在线观看| 好吊视频—区二区三区| 天天干天天日天天谢综合156| 日韩欧美制服诱惑一区在线| 亚洲免费va在线播放| 欧美日韩v中文在线| 亚洲精品福利网站图片| 欧美韩国日本国产亚洲| av在线免费观看亚洲天堂| 日本人竟这样玩学生妹| 99久久成人日韩欧美精品| 国产乱子伦精品视频潮优女| 欧美色婷婷综合在线| 插小穴高清无码中文字幕| 日本精品一区二区三区在线视频。| 亚洲一级 片内射视正片| 欧美中国日韩久久精品| 午夜在线精品偷拍一区二| 美女小视频网站在线| 91精品国产91久久自产久强| 2021最新热播中文字幕| 欧美视频综合第一页| 国产视频网站一区二区三区 | 久久尻中国美女视频| 日本免费午夜视频网站| 国产一区成人在线观看视频 | av资源中文字幕在线观看| avjpm亚洲伊人久久| 免费手机黄页网址大全| 超黄超污网站在线观看| 国产麻豆精品人妻av| 欧美日本在线观看一区二区| 久久久极品久久蜜桃| 超碰在线中文字幕一区二区| 人妻丝袜精品中文字幕| 日本黄色三级高清视频| 93精品视频在线观看| 黄色男人的天堂视频| 国产欧美日韩在线观看不卡| 老司机你懂得福利视频| 视频二区在线视频观看| 欧美一区二区三区久久久aaa| 成人免费毛片aaaa| 免费无码人妻日韩精品一区二区 | 亚洲精品av在线观看| 久久久精品欧洲亚洲av| 99久久成人日韩欧美精品| 成人av亚洲一区二区| 鸡巴操逼一级黄色气| 日本av熟女在线视频| 国产白袜脚足J棉袜在线观看| 99热这里只有精品中文| 少妇一区二区三区久久久| 欧美视频中文一区二区三区| 婷婷综合蜜桃av在线| 国产大学生援交正在播放| 日韩成人性色生活片| 日本福利午夜电影在线观看| 把腿张开让我插进去视频| 男人和女人激情视频| 亚洲粉嫩av一区二区三区| 免费黄色成人午夜在线网站| 丝袜美腿视频诱惑亚洲无| 亚洲精品中文字幕下载| 日本后入视频在线观看| 新97超碰在线观看| 亚洲免费成人a v| 伊人成人在线综合网| 中国熟女一区二区性xx| 在线 中文字幕 一区| 少妇与子乱在线观看| 亚洲综合另类精品小说| avjpm亚洲伊人久久| 日韩中文字幕在线播放第二页| 久久精品36亚洲精品束缚| 黑人巨大精品欧美视频| 黄色在线观看免费观看在线| 免费人成黄页网站在线观看国产| 老熟妇xxxhd老熟女| 天天日天天干天天爱| 国产高清女主播在线| 538精品在线观看视频| 性欧美激情久久久久久久| 91国偷自产一区二区三区精品| 欧美国品一二三产区区别| 久精品人妻一区二区三区| 风流唐伯虎电视剧在线观看| 一二三中文乱码亚洲乱码one| 国产精品自拍视频大全| 青青青激情在线观看视频| 蜜桃视频在线欧美一区| 久久艹在线观看视频| 国产一区二区久久久裸臀| 男大肉棒猛烈插女免费视频 | 天天操天天污天天射| 青草青永久在线视频18| 97少妇精品在线观看| 熟女人妻在线中出观看完整版| 精品国产成人亚洲午夜| 毛茸茸的大外阴中国视频| 亚洲国产免费av一区二区三区 | 欧美韩国日本国产亚洲| 99精品国产aⅴ在线观看| 午夜激情高清在线观看| 国产精品女邻居小骚货| 被大鸡吧操的好舒服视频免费| 亚洲嫩模一区二区三区| 晚上一个人看操B片| 日韩美女精品视频在线观看网站| 狠狠操操操操操操操操操| 天天做天天干天天舔| 班长撕开乳罩揉我胸好爽| 午夜精品福利一区二区三区p | 大肉大捧一进一出好爽在线视频| 亚洲美女自偷自拍11页| 久久久久久99国产精品|