国产无遮挡裸体免费直播视频,久久精品国产蜜臀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)論

久久久久久九九99精品| 久久永久免费精品人妻专区| 人妻少妇亚洲一区二区| 亚洲图片偷拍自拍区| 女同互舔一区二区三区| 97人妻无码AV碰碰视频| 狠狠操操操操操操操操操| 激情小视频国产在线| 亚洲一区二区三区av网站| 日韩精品中文字幕在线| 亚洲综合图片20p| 美女视频福利免费看| 激情人妻校园春色亚洲欧美| 久久久久久久久久久久久97| 熟女人妻三十路四十路人妻斩| 四虎永久在线精品免费区二区| 天天干狠狠干天天操| 天天爽夜夜爽人人爽QC| 日本特级片中文字幕| 在线播放国产黄色av| 欧美一区二区三区激情啪啪啪| 亚洲综合一区成人在线| 一区二区三区的久久的蜜桃的视频 | 日本韩国在线观看一区二区| 又大又湿又爽又紧A视频| 91在线视频在线精品3| 自拍 日韩 欧美激情| 久久久久久久99精品| 91 亚洲视频在线观看| 成熟熟女国产精品一区| 国产之丝袜脚在线一区二区三区| 中文字幕人妻av在线观看| 亚洲av第国产精品| 成人综合亚洲欧美一区 | 欧美日本国产自视大全| 77久久久久国产精产品| 国产之丝袜脚在线一区二区三区| 天天躁日日躁狠狠躁躁欧美av| 在线免费观看黄页视频| 欧美偷拍自拍色图片| 自拍偷拍,中文字幕| 91九色porny国产在线| 国产精品成人xxxx| 久久丁香花五月天色婷婷| 丝袜美腿视频诱惑亚洲无| 在线免费观看国产精品黄色| 亚洲熟色妇av日韩熟色妇在线| 99热99re在线播放| 中文字幕免费在线免费| 国产一区二区欧美三区| 一区二区免费高清黄色视频| 91亚洲手机在线视频播放| 粉嫩小穴流水视频在线观看| 日本最新一二三区不卡在线| 国产精品人妻66p| 午夜在线观看岛国av,com| 1000部国产精品成人观看视频| 国产黄色大片在线免费播放| 亚洲国产欧美国产综合在线| 国产熟妇人妻ⅹxxxx麻豆| 成人综合亚洲欧美一区 | 日韩人妻丝袜中文字幕| 1769国产精品视频免费观看| av男人天堂狠狠干| 青青青aaaa免费| 精品成人午夜免费看| 亚洲综合在线视频可播放| 高清成人av一区三区| 青青草原网站在线观看| 一级黄色片夫妻性生活| 噜噜色噜噜噜久色超碰| 玩弄人妻熟妇性色av少妇| 久久丁香婷婷六月天| 一区二区三区激情在线| 精品久久久久久久久久中文蒉| 中字幕人妻熟女人妻a62v网| 国产视频一区二区午夜| 天天射,天天操,天天说| 国产成人午夜精品福利| 青青在线视频性感少妇和隔壁黑丝| 精品国产高潮中文字幕| av手机在线免费观看日韩av| av一本二本在线观看| 91国偷自产一区二区三区精品| 91社福利《在线观看| 亚洲美女高潮喷浆视频| 国产午夜男女爽爽爽爽爽视频 | 女生自摸在线观看一区二区三区 | 把腿张开让我插进去视频| 美女 午夜 在线视频| 日本三极片中文字幕| 涩爱综合久久五月蜜臀| 久久久精品999精品日本| 初美沙希中文字幕在线| 亚洲免费在线视频网站| 亚洲中文字幕校园春色| 91中文字幕最新合集| 欧美精品免费aaaaaa| av老司机亚洲一区二区| 色婷婷久久久久swag精品| 亚洲中文字幕人妻一区| 粉嫩欧美美人妻小视频| 美日韩在线视频免费看| 57pao国产一区二区| 青青社区2国产视频| av森泽佳奈在线观看| 久久精品亚洲成在人线a| 日本美女性生活一级片| 人妻另类专区欧美制服| 少妇一区二区三区久久久| 69精品视频一区二区在线观看| 精品一区二区三四区| 亚洲在线观看中文字幕av| 免费在线看的黄片视频| 91小伙伴中女熟女高潮| 天天艹天天干天天操| 特级无码毛片免费视频播放| 非洲黑人一级特黄片| 亚洲va天堂va国产va久| av久久精品北条麻妃av观看| 九色porny九色9l自拍视频| 日韩不卡中文在线视频网站| 9色在线视频免费观看| 欧美精品久久久久久影院| 少妇人妻久久久久视频黄片| 久久99久久99精品影院| 天天日天天日天天射天天干 | 国产中文字幕四区在线观看| 精品久久久久久久久久久a√国产 日本女大学生的黄色小视频 | 天天插天天色天天日| 在线观看黄色成年人网站| 99一区二区在线观看| 欧美视频一区免费在线| 亚洲av在线观看尤物| aⅴ精产国品一二三产品| 欧美黑人与人妻精品| 黄色大片免费观看网站| 日韩一个色综合导航| 91国内精品久久久久精品一 | 亚洲欧美综合在线探花| 亚洲天堂有码中文字幕视频| 真实国产乱子伦一区二区| 亚洲精品久久综合久| 久久久久久久一区二区三| 日韩欧美高清免费在线| 国产又粗又黄又硬又爽| 在线国产精品一区二区三区| 免费看高清av的网站| 亚洲人妻国产精品综合| 欧美一区二区三区久久久aaa| 国产在线91观看免费观看| 人人在线视频一区二区| 99久久99久国产黄毛片| 在线新三级黄伊人网| 国产精品系列在线观看一区二区| 在线观看免费av网址大全| 成年人午夜黄片视频资源| 亚洲无码一区在线影院| 深夜男人福利在线观看| 国产熟妇一区二区三区av| 色综合色综合色综合色| 天天日天天干天天要| 成人av免费不卡在线观看| 国产一区av澳门在线观看| rct470中文字幕在线| 大香蕉大香蕉在线看| 一区国内二区日韩三区欧美| 熟女在线视频一区二区三区| aⅴ五十路av熟女中出| 91一区精品在线观看| 亚洲图片偷拍自拍区| 日比视频老公慢点好舒服啊| 午夜精品福利一区二区三区p | 日韩在线中文字幕色| 福利午夜视频在线观看| 久久免费看少妇高潮完整版| 国产aⅴ一线在线观看| 国产精品视频一区在线播放| 午夜大尺度无码福利视频| 日韩伦理短片在线观看| 欧美日韩一级黄片免费观看| 欧美成人黄片一区二区三区 | 黑人巨大精品欧美视频| 午夜美女少妇福利视频| 日本一道二三区视频久久 | 韩国男女黄色在线观看| 国产性色生活片毛片春晓精品| 久久久久久久亚洲午夜综合福利| 自拍 日韩 欧美激情| 欧美乱妇无乱码一区二区| 97黄网站在线观看| 丰满熟女午夜福利视频| 这里只有精品双飞在线播放| 黄片三级三级三级在线观看| 国产污污污污网站在线| 中文字幕中文字幕人妻| 97人妻无码AV碰碰视频| 精品亚洲国产中文自在线| 天天日天天干天天干天天日| 久久精品国产23696| 成人伊人精品色xxxx视频| 久久艹在线观看视频| 国产露脸对白在线观看| 国产在线观看黄色视频| 欧美性感尤物人妻在线免费看| aaa久久久久久久久| 男人天堂色男人av| 免费黄页网站4188| 日本女人一级免费片| 亚洲免费福利一区二区三区| 国产熟妇一区二区三区av| 极品粉嫩小泬白浆20p主播| 精品黑人一区二区三区久久国产 | 亚洲欧美日韩视频免费观看| 亚洲av人人澡人人爽人人爱| 天天日天天摸天天爱| 欧美香蕉人妻精品一区二区| 夏目彩春在线中文字幕| 在线免费观看视频一二区| 亚洲成人av一区在线| 欧美精品免费aaaaaa| 玩弄人妻熟妇性色av少妇| 久久久久久国产精品| 97精品成人一区二区三区| 天堂资源网av中文字幕| 高清成人av一区三区| av中文字幕电影在线看| 小泽玛利亚视频在线观看| 人人妻人人人操人人人爽| 一区二区三区麻豆福利视频| 中文字幕人妻三级在线观看| 五十路在线观看完整版| av手机免费在线观看高潮| 含骚鸡巴玩逼逼视频| 不卡日韩av在线观看| 男人插女人视频网站| 2022天天干天天操| 欧美偷拍自拍色图片| 五十路人妻熟女av一区二区| av在线免费资源站| 亚洲av第国产精品| 中文字母永久播放1区2区3区| 国产精品一区二区av国| 成人H精品动漫在线无码播放| 午夜精彩视频免费一区| 小穴多水久久精品免费看| 日辽宁老肥女在线观看视频| 一区二区三区精品日本| 第一福利视频在线观看| 国产麻豆乱子伦午夜视频观看| 免费观看理论片完整版| 91成人精品亚洲国产| av网站色偷偷婷婷网男人的天堂| 99热久久这里只有精品| 日本美女性生活一级片| 偷拍3456eee| 免费黄页网站4188| 国产中文精品在线观看| 午夜精品九一唐人麻豆嫩草成人| 精品人妻一二三区久久| 国产精品黄色的av| 日日夜夜狠狠干视频| 天美传媒mv视频在线观看| 午夜蜜桃一区二区三区| 亚洲精品av在线观看| 99久久久无码国产精品性出奶水| 欧美地区一二三专区| 91精品国产91青青碰| 只有精品亚洲视频在线观看| 99精品国产免费久久| 日韩无码国产精品强奸乱伦| 亚洲av人人澡人人爽人人爱| 春色激情网欧美成人| 国产精品伦理片一区二区| 国产视频精品资源网站| 国产欧美精品不卡在线| 日本免费一级黄色录像| 色哟哟在线网站入口| 亚洲精品欧美日韩在线播放| 五十路熟女人妻一区二| 亚洲偷自拍高清视频| 亚洲少妇高潮免费观看| 四川乱子伦视频国产vip| 欧美国产亚洲中英文字幕| av黄色成人在线观看| av俺也去在线播放| 成熟熟女国产精品一区| 在线观看免费岛国av| 91九色porny蝌蚪国产成人| 日韩午夜福利精品试看| 美洲精品一二三产区区别| 久久久超爽一二三av| 91社福利《在线观看| 精品区一区二区三区四区人妻 | 宅男噜噜噜666国产| 国产日韩av一区二区在线| 亚洲va国产va欧美va在线| 88成人免费av网站| av无限看熟女人妻另类av| 91亚洲国产成人精品性色| 欧洲欧美日韩国产在线| 日本av熟女在线视频| 97色视频在线观看| 丝袜肉丝一区二区三区四区在线 | 在线观看黄色成年人网站| 视频久久久久久久人妻| 欧美成人精品在线观看| 亚洲国产欧美一区二区三区久久| 日本成人一区二区不卡免费在线| 国产密臀av一区二区三| 午夜极品美女福利视频| 美女在线观看日本亚洲一区| 国产在线观看黄色视频| av网址在线播放大全| 麻豆性色视频在线观看| 久久精品国产23696| 天天干天天爱天天色| 韩国一级特黄大片做受| 久久久久91精品推荐99| 红桃av成人在线观看| 亚洲一级 片内射视正片| 高潮视频在线快速观看国家快速| yellow在线播放av啊啊啊| 亚洲av无女神免非久久| 日韩人妻在线视频免费| 早川濑里奈av黑人番号| 亚洲推理片免费看网站| 日韩美在线观看视频黄| 精彩视频99免费在线| 日本一区美女福利视频| 免费在线观看污污视频网站| 啪啪啪啪啪啪啪啪啪啪黄色| 少妇被强干到高潮视频在线观看| 亚洲激情,偷拍视频| av网址国产在线观看| 1000部国产精品成人观看视频| 中文亚洲欧美日韩无线码| 国产aⅴ一线在线观看| 久久久久久国产精品| 成人av亚洲一区二区| 日本美女性生活一级片| 深田咏美亚洲一区二区| 久久久超爽一二三av| 成人免费公开视频无毒| 欧洲黄页网免费观看| 自拍偷拍日韩欧美一区二区| 亚洲免费福利一区二区三区| av天堂中文免费在线| 欧美黄片精彩在线免费观看| 亚洲国产免费av一区二区三区| 国产精品视频资源在线播放| 久久久久久国产精品| 啪啪啪啪啪啪啪啪啪啪黄色| 亚洲av在线观看尤物| 青娱乐蜜桃臀av色| 99热久久这里只有精品8| 黄色在线观看免费观看在线| 伊人综合aⅴ在线网| 韩国一级特黄大片做受| 黄色视频在线观看高清无码| 一级A一级a爰片免费免会员| 蜜臀av久久久久久久| 久草视频在线免播放| 狠狠躁狠狠爱网站视频 | 大鸡吧插入女阴道黄色片| 91www一区二区三区| 国产大鸡巴大鸡巴操小骚逼小骚逼 | 夜夜嗨av蜜臀av| 日韩美女精品视频在线观看网站| 2022中文字幕在线| 国产精品视频男人的天堂| 欧美黑人巨大性xxxxx猛交| 亚洲成人国产综合一区| 欧美精品伦理三区四区| 久久久久久久99精品| 2020中文字幕在线播放| 宅男噜噜噜666国产| 天干天天天色天天日天天射 | 中文字幕一区二 区二三区四区 | 午夜美女少妇福利视频| 免费看国产又粗又猛又爽又黄视频 | 精品美女福利在线观看| 国产伦精品一区二区三区竹菊| 国产成人精品亚洲男人的天堂| 任我爽精品视频在线播放| 久久艹在线观看视频| 亚洲天堂精品久久久| 久久h视频在线观看| 天天日夜夜干天天操| 日韩亚洲高清在线观看| 4个黑人操素人视频网站精品91| 久久久久久久久久久久久97| 又大又湿又爽又紧A视频| 伊人综合aⅴ在线网| 亚洲美女美妇久久字幕组| 国产综合高清在线观看| 大香蕉福利在线观看| 38av一区二区三区| 日本福利午夜电影在线观看| 在线亚洲天堂色播av电影| 黑人变态深video特大巨大| 亚洲av第国产精品| 欧美日韩高清午夜蜜桃大香蕉| 亚洲综合一区成人在线| 狠狠的往里顶撞h百合| 亚洲欧美自拍另类图片| 日本熟女50视频免费| 和邻居少妇愉情中文字幕| 好吊视频—区二区三区| 人妻丝袜精品中文字幕| 欧美黑人巨大性xxxxx猛交| 国产av国片精品一区二区| 91精品国产黑色丝袜| 日韩中文字幕在线播放第二页 | 天天操天天干天天日狠狠插| 国产福利小视频免费观看| 粉嫩av蜜乳av蜜臀| 黄色片黄色片wyaa| 亚洲激情av一区二区| 青青青青视频在线播放| 日韩中文字幕福利av| 55夜色66夜色国产精品站| 福利视频广场一区二区| 天天干夜夜操啊啊啊| 99re国产在线精品| 搞黄色在线免费观看| 啪啪啪啪啪啪啪啪啪啪黄色| av无限看熟女人妻另类av| 欧美精品激情在线最新观看视频| 97国产在线观看高清| 亚洲欧美日韩视频免费观看| 久久久久久cao我的性感人妻| 精品一区二区三四区| 欧美成人猛片aaaaaaa| av天堂资源最新版在线看| 91p0rny九色露脸熟女| 天天干天天插天天谢| 国产成人精品av网站| 人人妻人人澡欧美91精品| 9色在线视频免费观看| 亚洲国产在人线放午夜| av网址国产在线观看| 啊啊好大好爽啊啊操我啊啊视频| 非洲黑人一级特黄片| 国产精品视频欧美一区二区| 99精品亚洲av无码国产另类| 啪啪啪操人视频在线播放| gav成人免费播放| 日韩a级黄色小视频| 国产日韩一区二区在线看 | 欧美色呦呦最新网址| 亚洲国产精品久久久久久6| 日比视频老公慢点好舒服啊| 中文字幕乱码av资源| 班长撕开乳罩揉我胸好爽| 久久永久免费精品人妻专区| av高潮迭起在线观看| 天天艹天天干天天操| 免费69视频在线看| 一二三中文乱码亚洲乱码one| www天堂在线久久| 丰满的继坶3中文在线观看| 青青青青在线视频免费观看| 亚洲精品麻豆免费在线观看| 夜夜操,天天操,狠狠操| 男人的网址你懂的亚洲欧洲av| 黄色成人在线中文字幕| 综合页自拍视频在线播放| 国产性感美女福利视频| 57pao国产一区二区| 嫩草aⅴ一区二区三区| 99精品免费久久久久久久久a| 亚洲欧美国产麻豆综合| 亚洲最大黄了色网站| 一区二区三区日本伦理| 在线不卡成人黄色精品| gav成人免费播放| 日韩美女福利视频网| 曰本无码人妻丰满熟妇啪啪| 成人资源在线观看免费官网| 久久久久久久久久一区二区三区| 色av色婷婷人妻久久久精品高清 | 国产九色91在线视频| 揄拍成人国产精品免费看视频| 男人的天堂av日韩亚洲| 日韩欧美高清免费在线| 操人妻嗷嗷叫视频一区二区| 亚洲精品无码色午夜福利理论片| 国产卡一卡二卡三乱码手机| 午夜在线一区二区免费| 中文字幕日韩91人妻在线| 视频 一区二区在线观看| 国产福利小视频免费观看| 亚洲成人激情av在线| 做爰视频毛片下载蜜桃视频1| 一区二区三区久久中文字幕| 亚洲伊人久久精品影院一美女洗澡| 天堂av在线最新版在线| 日噜噜噜夜夜噜噜噜天天噜噜噜| 亚洲av色图18p| 东游记中文字幕版哪里可以看到| h国产小视频福利在线观看| 全国亚洲男人的天堂| 亚洲成人黄色一区二区三区| 国产午夜福利av导航| 97精品人妻一区二区三区精品| 岛国一区二区三区视频在线| 亚洲欧美一区二区三区电影| 蜜桃色婷婷久久久福利在线| 78色精品一区二区三区| 一区二区在线观看少妇| 国产av福利网址大全| 另类av十亚洲av| 性生活第二下硬不起来| 日本男女操逼视频免费看| 一区二区三区日韩久久| 久久精品亚洲成在人线a| 国产成人精品福利短视频| 激情啪啪啪啪一区二区三区| 天天日天天爽天天爽| 97超碰免费在线视频| 久久永久免费精品人妻专区| 女同性ⅹxx女同hd| 精品欧美一区二区vr在线观看| 美洲精品一二三产区区别| 在线观看成人国产电影| 人妻丝袜榨强中文字幕| 日韩美女精品视频在线观看网站 | 午夜在线精品偷拍一区二| 午夜精品在线视频一区| 一区二区三区视频,福利一区二区| 亚洲一级av无码一级久久精品| 国产在线观看免费人成短视频| free性日本少妇| 亚洲精品ww久久久久久| 快点插进来操我逼啊视频| 啪啪啪啪啪啪啪免费视频| 久草电影免费在线观看| 亚洲av无乱一区二区三区性色| 久久久麻豆精亚洲av麻花| 真实国产乱子伦一区二区| 绝顶痉挛大潮喷高潮无码| 91久久人澡人人添人人爽乱| 偷拍自拍亚洲美腿丝袜| 98视频精品在线观看| 性色av一区二区三区久久久| 亚洲精品一区二区三区老狼| 在线免费91激情四射 | 在线视频这里只有精品自拍| 日曰摸日日碰夜夜爽歪歪| 青青青青青青青青青青草青青| 直接能看的国产av| 成人性黑人一级av| 国产高清精品极品美女| 国产av福利网址大全| av一本二本在线观看| 在线 中文字幕 一区| 日韩av熟妇在线观看| 又黄又刺激的午夜小视频| 欧美激情电影免费在线| 亚洲精品国产在线电影| 欧美一区二区中文字幕电影 | 免费男阳茎伸入女阳道视频| 天天操,天天干,天天射| 美日韩在线视频免费看| 亚洲综合图片20p| 国产女人被做到高潮免费视频| 天天做天天干天天舔| 日本熟女50视频免费| 91九色国产熟女一区二区| 夜夜嗨av一区二区三区中文字幕| 人妻丝袜诱惑我操她视频| 国产精品国产精品一区二区| 日本精品一区二区三区在线视频。| 国产亚洲四十路五十路| 2022国产综合在线干| 国产无遮挡裸体免费直播视频| 国产熟妇乱妇熟色T区| 五十路熟女av天堂| nagger可以指黑人吗| 亚洲成人熟妇一区二区三区| 色97视频在线播放| 日本韩国在线观看一区二区| 成人sm视频在线观看| 成人午夜电影在线观看 久久| 国产真实乱子伦a视频| 午夜精品久久久久麻豆影视| 天天色天天舔天天射天天爽| av天堂资源最新版在线看| 国产性色生活片毛片春晓精品 | 99久久激情婷婷综合五月天| 国产成人精品久久二区91| 揄拍成人国产精品免费看视频 | 久久热久久视频在线观看| 午夜91一区二区三区| 中文字幕人妻三级在线观看| 亚洲美女高潮喷浆视频| 喷水视频在线观看这里只有精品 | 欧美香蕉人妻精品一区二区| 亚洲少妇人妻无码精品| 少妇高潮无套内谢麻豆| 精品一区二区三区三区88| 2020av天堂网在线观看| 日韩在线中文字幕色| 欧美一区二区三区高清不卡tv| 免费在线观看污污视频网站| 自拍偷拍亚洲欧美在线视频| 东京干手机福利视频| 97国产精品97久久| 日本精品视频不卡一二三| 亚洲精品一区二区三区老狼| 国产福利在线视频一区| 亚洲国产欧美一区二区三区…| 很黄很污很色的午夜网站在线观看| 久久艹在线观看视频| 亚洲天堂av最新网址| 成人H精品动漫在线无码播放| 人妻丝袜精品中文字幕| 在线观看日韩激情视频| 久久久精品欧洲亚洲av| 久久美欧人妻少妇一区二区三区| 亚洲成人线上免费视频观看| 免费费一级特黄真人片| 国产卡一卡二卡三乱码手机| 亚洲区欧美区另类最新章节| 无码精品一区二区三区人| 亚洲国际青青操综合网站| 动漫美女的小穴视频| 麻豆性色视频在线观看| 亚洲另类综合一区小说| 色哟哟国产精品入口| 一区二区三区四区五区性感视频 | 自拍 日韩 欧美激情| 亚洲国产精品黑丝美女| 美女 午夜 在线视频| 亚洲成人激情av在线| 99精品国产aⅴ在线观看 | 大鸡吧插入女阴道黄色片| 成年人免费看在线视频| 中文字幕在线永久免费播放| 亚洲一区二区人妻av| 啪啪啪啪啪啪啪啪啪啪黄色| 亚洲 国产 成人 在线| 激情五月婷婷免费视频| 91九色国产porny蝌蚪| 19一区二区三区在线播放| 午夜在线精品偷拍一区二| 少妇一区二区三区久久久| 蜜桃臀av蜜桃臀av| 天天日天天干天天插舔舔| 边摸边做超爽毛片18禁色戒| 成人av中文字幕一区| 日韩成人性色生活片| 亚洲在线观看中文字幕av| 欧美国品一二三产区区别| 亚洲卡1卡2卡三卡四老狼| 欧美香蕉人妻精品一区二区| 香蕉av影视在线观看| 国际av大片在线免费观看| 国产乱弄免费视频观看| 啪啪啪啪啪啪啪免费视频| 精品国产成人亚洲午夜| 久久农村老妇乱69系列| 欧美中国日韩久久精品| 国产又粗又硬又大视频| 鸡巴操逼一级黄色气| 国产一级麻豆精品免费| 免费大片在线观看视频网站| 人妻少妇精品久久久久久| 精品高跟鞋丝袜一区二区| 色在线观看视频免费的| 97国产精品97久久| 曰本无码人妻丰满熟妇啪啪| av中文在线天堂精品| 久久久久久国产精品| 5528327男人天堂| av日韩在线免费播放| 性欧美激情久久久久久久| 免费黄页网站4188| 午夜影院在线观看视频羞羞羞| 国产高清精品极品美女| 只有精品亚洲视频在线观看| 蜜臀av久久久久蜜臀av麻豆| 91试看福利一分钟| 亚洲av午夜免费观看| 女警官打开双腿沦为性奴| 大鸡吧插入女阴道黄色片| 中文字幕之无码色多多| 人妻爱爱 中文字幕| 人妻丝袜精品中文字幕| 欧美精品伦理三区四区| 亚洲av人人澡人人爽人人爱| 搞黄色在线免费观看| 高潮喷水在线视频观看| 日本熟女精品一区二区三区| 日韩伦理短片在线观看| 色综合天天综合网国产成人| 深田咏美亚洲一区二区 | 黄色视频在线观看高清无码| 欧美亚洲中文字幕一区二区三区| 五色婷婷综合狠狠爱| 亚洲欧美综合在线探花| jiujiure精品视频在线| 国产白袜脚足J棉袜在线观看| 不卡一不卡二不卡三| 亚洲少妇人妻无码精品| 中文字幕在线观看极品视频| 深夜男人福利在线观看| 777奇米久久精品一区| 天天射夜夜操狠狠干| 中文字幕av一区在线观看| 日韩欧美在线观看不卡一区二区| 国产高清女主播在线| 成人蜜臀午夜久久一区| 美女骚逼日出水来了| 日韩人妻xxxxx| 无码日韩人妻精品久久| 在线视频自拍第三页| 亚洲粉嫩av一区二区三区| 黑人巨大精品欧美视频| 抽查舔水白紧大视频| 黄色成年网站午夜在线观看| 日本欧美视频在线观看三区| 熟女少妇激情五十路| 91国内视频在线观看| 播放日本一区二区三区电影 | 动漫美女的小穴视频| 国产亚州色婷婷久久99精品| 亚洲国产欧美一区二区三区久久| 久久一区二区三区人妻欧美| 亚洲免费在线视频网站| 被大鸡吧操的好舒服视频免费| 老司机你懂得福利视频| 色综合久久久久久久久中文| 4个黑人操素人视频网站精品91| 风流唐伯虎电视剧在线观看| 日本www中文字幕| 91综合久久亚洲综合| 亚洲日本一区二区三区| 在线免费观看靠比视频的网站| 成人蜜桃美臀九一一区二区三区| 亚洲av黄色在线网站| 精品亚洲在线免费观看| 快点插进来操我逼啊视频| 偷拍美女一区二区三区| 久久这里有免费精品| 国产欧美日韩第三页| 大胸性感美女羞爽操逼毛片| 啪啪啪啪啪啪啪啪av| 精品一线二线三线日本| okirakuhuhu在线观看| 亚洲综合在线视频可播放| japanese日本熟妇另类| 中文字幕av男人天堂| 男人的天堂一区二区在线观看| 国产午夜激情福利小视频在线| 操操网操操伊剧情片中文字幕网| 国产亚洲精品欧洲在线观看| av中文字幕在线导航| 性欧美日本大妈母与子| 中文字幕无码一区二区免费| 中国视频一区二区三区| 欧美在线精品一区二区三区视频| 性欧美日本大妈母与子| 97成人免费在线观看网站| 精品久久婷婷免费视频| 五月天色婷婷在线观看视频免费| 亚洲av极品精品在线观看| 久久热这里这里只有精品| 成人免费公开视频无毒| eeuss鲁片一区二区三区| 国产黄色大片在线免费播放 | 91极品大一女神正在播放| 大鸡吧插入女阴道黄色片| 1区2区3区4区视频在线观看| aaa久久久久久久久| 中文字幕日韩无敌亚洲精品| 成年午夜免费无码区| 在线新三级黄伊人网| 成熟熟女国产精品一区| 中文字幕1卡1区2区3区| 久久www免费人成一看片| 日韩av有码一区二区三区4| 日韩国产乱码中文字幕| 免费成人av中文字幕| 国语对白xxxx乱大交| 日本少妇精品免费视频| 视频啪啪啪免费观看| 国产欧美精品免费观看视频| 国产亚洲视频在线观看| 熟妇一区二区三区高清版| 亚洲欧美另类手机在线| 最新97国产在线视频| 免费观看丰满少妇做受| 欧美 亚洲 另类综合| 蜜桃专区一区二区在线观看| 超pen在线观看视频公开97| 日韩美女福利视频网| 国产三级影院在线观看| 九色porny九色9l自拍视频| 在线免费观看日本片| 在线视频这里只有精品自拍| 婷婷午夜国产精品久久久| 国产成人精品一区在线观看| 免费看美女脱光衣服的视频| 国产亚洲欧美45p| 男人的天堂一区二区在线观看| 性生活第二下硬不起来| 都市激情校园春色狠狠| 日本三极片视频网站观看| 五月天久久激情视频| 偷拍美女一区二区三区| 日本女人一级免费片| 天天摸天天日天天操| 操操网操操伊剧情片中文字幕网| 国内自拍第一页在线观看| 晚上一个人看操B片| av中文字幕在线导航| 国产高潮无码喷水AV片在线观看| 国产性色生活片毛片春晓精品| 91she九色精品国产| 欧美中文字幕一区最新网址| 岛国黄色大片在线观看| 大鸡巴操b视频在线| 精品老妇女久久9g国产| 日本一区精品视频在线观看| 99热久久极品热亚洲| 欧美国产亚洲中英文字幕| 真实国模和老外性视频| 91国偷自产一区二区三区精品| 无码国产精品一区二区高潮久久4| 亚洲天堂第一页中文字幕| 青青草成人福利电影| 狠狠嗨日韩综合久久| 免费看国产又粗又猛又爽又黄视频| 91九色porny国产在线| 超级av免费观看一区二区三区| 国产极品精品免费视频| 美女少妇亚洲精选av| 天码人妻一区二区三区在线看| 午夜美女少妇福利视频| 欧美精品一区二区三区xxxx| 欧美一区二区三区高清不卡tv | 91成人精品亚洲国产| 亚洲 国产 成人 在线| 欧美日韩一级黄片免费观看| 适合午夜一个人看的视频| 亚洲自拍偷拍精品网| 特黄老太婆aa毛毛片| 日韩精品二区一区久久| 日本韩国在线观看一区二区| 亚洲欧美久久久久久久久| 日韩影片一区二区三区不卡免费| 成人激情文学网人妻 | 啪啪啪啪啪啪啪啪啪啪黄色| 久久久久只精品国产三级| 国产女人被做到高潮免费视频 | 国产伊人免费在线播放| 精品视频国产在线观看| 亚洲激情偷拍一区二区| 日本熟妇一区二区x x| 激情内射在线免费观看| 99热国产精品666| 日韩一区二区三区三州| 人妻素人精油按摩中出| 亚洲区欧美区另类最新章节| 日本特级片中文字幕| 啊啊好大好爽啊啊操我啊啊视频| 欧美另类重口味极品在线观看| 超碰97人人做人人爱| 亚洲国产免费av一区二区三区| 亚洲欧美综合另类13p| 国产乱子伦一二三区| 和邻居少妇愉情中文字幕| 午夜福利资源综合激情午夜福利资| 91国内精品自线在拍白富美| 青青草视频手机免费在线观看| 国产在线观看黄色视频| 亚洲成人情色电影在线观看| 天天躁夜夜躁日日躁a麻豆| 视频在线亚洲一区二区| 欧美一级色视频美日韩| 精品久久久久久久久久久99| 成年人该看的视频黄免费| 国产高清在线在线视频| 欧美精品中文字幕久久二区| okirakuhuhu在线观看| 亚洲欧美清纯唯美另类| 国产精品久久久久久久久福交 | 久久这里有免费精品| 成人30分钟免费视频| 青青社区2国产视频| 国产av一区2区3区| 天天日天天干天天搡| 不卡日韩av在线观看| 午夜精品一区二区三区4| 91在线免费观看成人| 中文字幕一区二 区二三区四区 | 亚洲色偷偷综合亚洲AV伊人| 亚洲一区二区三区偷拍女厕91| 亚洲一区制服丝袜美腿 | 久久www免费人成一看片| 亚洲狠狠婷婷综合久久app| 少妇被强干到高潮视频在线观看| 国产普通话插插视频| 天天日天天敢天天干| 久久www免费人成一看片| 成人免费做爰高潮视频| 无码精品一区二区三区人| 97精品视频在线观看| 少妇与子乱在线观看| 男人的天堂av日韩亚洲| 无码国产精品一区二区高潮久久4| 偷青青国产精品青青在线观看 | 亚洲午夜电影之麻豆| 精品视频中文字幕在线播放| 91试看福利一分钟| 国产精品黄色的av| 国产综合精品久久久久蜜臀| 亚洲 中文 自拍 无码| 中文字幕中文字幕 亚洲国产| 93精品视频在线观看| 欧美在线偷拍视频免费看| 欧美在线一二三视频| 国产精品久久久久久久久福交| 亚洲 自拍 色综合图| 亚洲 自拍 色综合图| 日本av熟女在线视频| 欧洲精品第一页欧洲精品亚洲| 天天操天天爽天天干| 韩国黄色一级二级三级| 成年美女黄网站18禁久久| 国产福利小视频二区| 精品一线二线三线日本| 中国无遮挡白丝袜二区精品| 少妇深喉口爆吞精韩国| 国产精品国产精品一区二区| 黄色资源视频网站日韩| 日本午夜爽爽爽爽爽视频在线观看 | 国产91嫩草久久成人在线视频| 在线免费91激情四射 | 日本阿v视频在线免费观看| 亚洲午夜在线视频福利| 日本午夜爽爽爽爽爽视频在线观看 | 一区二区在线视频中文字幕| 婷婷久久一区二区字幕网址你懂得 | 91社福利《在线观看| 男人的天堂一区二区在线观看| 啊慢点鸡巴太大了啊舒服视频| 高潮视频在线快速观看国家快速| 国产精品视频欧美一区二区| 亚洲熟女女同志女同| 伊人网中文字幕在线视频| 中文字幕av一区在线观看| 亚洲嫩模一区二区三区| 久草极品美女视频在线观看| 亚洲美女自偷自拍11页| 亚洲人妻30pwc| 午夜精品亚洲精品五月色| 丰满的子国产在线观看| 亚洲 欧美 自拍 偷拍 在线| 9国产精品久久久久老师 | 亚洲 人妻 激情 中文| 天堂中文字幕翔田av| 青草久久视频在线观看| 成人乱码一区二区三区av| 欧美viboss性丰满| 久草视频首页在线观看| 97香蕉碰碰人妻国产樱花| 成年人黄色片免费网站| 亚洲中文字幕人妻一区| 亚欧在线视频你懂的| 天天日夜夜操天天摸| 天天日天天干天天干天天日| 亚洲国产中文字幕啊啊啊不行了| 夜鲁夜鲁狠鲁天天在线| 国产综合视频在线看片| 97小视频人妻一区二区| 最近中文2019年在线看| 在线观看黄色成年人网站| 亚洲伊人久久精品影院一美女洗澡| 一个色综合男人天堂| 丰满的子国产在线观看| 40道精品招牌菜特色| 免费岛国喷水视频在线观看| 2021天天色天天干| av完全免费在线观看av| 大香蕉大香蕉在线有码 av| 日本xx片在线观看| av大全在线播放免费| 国产刺激激情美女网站| 亚洲精品 欧美日韩| 在线成人日韩av电影| 日本一区二区三区免费小视频| 全国亚洲男人的天堂| 免费69视频在线看| 夜夜嗨av蜜臀av| 国产亚洲成人免费在线观看 | 日本熟女50视频免费| 91快播视频在线观看| 天天日天天舔天天射进去| 极品丝袜一区二区三区| 青青青青青免费视频| 日韩在线中文字幕色| 免费在线观看视频啪啪| 成人蜜桃美臀九一一区二区三区| 99视频精品全部15| 开心 色 六月 婷婷| 男人操女人的逼免费视频| 春色激情网欧美成人| 国产在线拍揄自揄视频网站| 日韩二区视频一线天婷婷五| 中文字幕第1页av一天堂网| 免费手机黄页网址大全| 一区二区三区欧美日韩高清播放| 欧美亚洲中文字幕一区二区三区 | 国产91精品拍在线观看| 视频在线亚洲一区二区| 超碰在线观看免费在线观看| 日本美女性生活一级片| 人妻在线精品录音叫床| 91快播视频在线观看| 天天日天天干天天要| 中文字幕在线欧美精品| 污污小视频91在线观看| 狠狠躁夜夜躁人人爽天天天天97| 喷水视频在线观看这里只有精品 | 93精品视频在线观看| 第一福利视频在线观看| 天天干天天操天天插天天日| 蜜臀av久久久久久久| 人人超碰国字幕观看97| 在线观看的a站 最新| 91社福利《在线观看| 久久精品国产亚洲精品166m| 五十路熟女av天堂| 大鸡巴操b视频在线| 亚洲熟女女同志女同| 绝顶痉挛大潮喷高潮无码| 热久久只有这里有精品| 自拍偷拍,中文字幕| 国产女孩喷水在线观看| 国产成人一区二区三区电影网站| 亚洲另类在线免费观看| 日本熟妇丰满厨房55| 亚洲色偷偷综合亚洲AV伊人| 中文字幕日韩精品日本| 99精品视频之69精品视频| 国产实拍勾搭女技师av在线| 黄色片黄色片wyaa| 日本少妇人妻xxxxx18| 中国老熟女偷拍第一页| 欧美亚洲中文字幕一区二区三区| 亚洲福利精品福利精品福利| 欧美一区二区三区啪啪同性| yy6080国产在线视频| 福利国产视频在线观看| 日韩一区二区电国产精品| 又粗又硬又猛又黄免费30| 国产成人午夜精品福利| 亚洲一级美女啪啪啪| 国产第一美女一区二区三区四区| 天天色天天爱天天爽| 成人国产影院在线观看| brazzers欧熟精品系列| 中文字幕一区的人妻欧美日韩| 亚洲图片偷拍自拍区| 成人性黑人一级av| 久久久久久久亚洲午夜综合福利| 国产大学生援交正在播放| 加勒比视频在线免费观看| 快插进小逼里大鸡吧视频| 熟妇一区二区三区高清版| 粉嫩小穴流水视频在线观看| 亚洲欧美人精品高清| 97年大学生大白天操逼| 国产中文精品在线观看| 国产av一区2区3区| 欧洲亚洲欧美日韩综合| 青青青视频自偷自拍38碰| 日本脱亚入欧是指什么| 美洲精品一二三产区区别| 国产精品成久久久久三级蜜臀av| 国产又大又黄免费观看| 午夜影院在线观看视频羞羞羞| 欧美viboss性丰满| 成人免费公开视频无毒| 经典av尤物一区二区| 黄工厂精品视频在线观看| 久久久久久cao我的性感人妻| 国产一级麻豆精品免费| 亚洲高清国产一区二区三区| 国产高清精品一区二区三区| 久久久久久久久久久免费女人| 欧美天堂av无线av欧美| 99一区二区在线观看| 中文字幕高清免费在线人妻| 看一级特黄a大片日本片黑人| 天天操天天插天天色| 亚洲美女高潮喷浆视频| 久久综合老鸭窝色综合久久| 亚洲av可乐操首页| 大陆精品一区二区三区久久| 国产美女一区在线观看| 蜜桃臀av蜜桃臀av| 2022精品久久久久久中文字幕| 亚洲欧美国产综合777| 国产精品精品精品999| 国产亚洲视频在线观看| 欧美日本在线观看一区二区| 国产一区自拍黄视频免费观看| 在线免费观看99视频| 午夜成午夜成年片在线观看| 涩涩的视频在线观看视频| 亚洲国产精品美女在线观看| 在线亚洲天堂色播av电影| 人妻少妇一区二区三区蜜桃| 中文字幕在线观看国产片| 日韩欧美国产精品91| 秋霞午夜av福利经典影视| av视网站在线观看| 久久久麻豆精亚洲av麻花| 婷婷色中文亚洲网68| 亚洲无码一区在线影院| 91she九色精品国产| 自拍偷拍亚洲欧美在线视频| 五月色婷婷综合开心网4438| 中文字幕1卡1区2区3区| 亚洲一区久久免费视频| 日本少妇精品免费视频| 日本啪啪啪啪啪啪啪| 国产一区av澳门在线观看| 日韩精品中文字幕福利| 99精品国自产在线人| 99re国产在线精品| 最新国产精品拍在线观看| 唐人色亚洲av嫩草| 亚洲男人让女人爽的视频| 男人天堂色男人av| 日韩欧美一级精品在线观看| 视频久久久久久久人妻| 久久久精品国产亚洲AV一| 大鸡巴插入美女黑黑的阴毛| 男女啪啪视频免费在线观看| 91国产资源在线视频| 国产在线观看免费人成短视频| 免费男阳茎伸入女阳道视频| 18禁美女羞羞免费网站| 自拍偷拍亚洲精品第2页| 91超碰青青中文字幕| 婷婷激情四射在线观看视频| 日韩亚洲高清在线观看| 少妇高潮无套内谢麻豆| 在线播放 日韩 av| 端庄人妻堕落挣扎沉沦| 国产精品国产精品一区二区| 漂亮 人妻被中出中文| 硬鸡巴动态操女人逼视频| v888av在线观看视频| 爱爱免费在线观看视频| 欧美久久久久久三级网| 亚洲蜜臀av一区二区三区九色| xxx日本hd高清| 福利午夜视频在线观看| 亚洲精品 日韩电影| 国产一级麻豆精品免费| av在线资源中文字幕| 丰满熟女午夜福利视频| 欧美天堂av无线av欧美| 欧美专区日韩专区国产专区| 最新激情中文字幕视频| 国产第一美女一区二区三区四区| 91久久人澡人人添人人爽乱| 激情图片日韩欧美人妻| 亚洲天堂精品久久久| 欧美日韩高清午夜蜜桃大香蕉| 欧美日本国产自视大全| 国产黄色片蝌蚪九色91| 91一区精品在线观看| 国产在线91观看免费观看| 一区二区免费高清黄色视频| 久草极品美女视频在线观看| 欧美精品亚洲精品日韩在线| asmr福利视频在线观看| 农村胖女人操逼视频| 香蕉aⅴ一区二区三区| 97国产在线观看高清| 国产日韩精品一二三区久久久| 午夜精品九一唐人麻豆嫩草成人| 亚洲麻豆一区二区三区| 美女被肏内射视频网站| 性欧美激情久久久久久久| 九九热99视频在线观看97| 成人24小时免费视频| 91chinese在线视频| 三级黄色亚洲成人av| 啪啪啪啪啪啪啪啪啪啪黄色| 国产成人精品福利短视频| 白白操白白色在线免费视频| 极品性荡少妇一区二区色欲| av一区二区三区人妻| 亚洲欧美综合在线探花| 天堂va蜜桃一区入口| 国产av自拍偷拍盛宴| 韩国三级aaaaa高清视频| 成年人午夜黄片视频资源| 99热久久极品热亚洲| 99re久久这里都是精品视频| 鸡巴操逼一级黄色气| 红杏久久av人妻一区| 黄色片一级美女黄色片| 在线成人日韩av电影| 天天日天天敢天天干| 欧美日本在线视频一区| 中文字母永久播放1区2区3区| 欧美天堂av无线av欧美| 欧美一区二区三区在线资源 | 成人精品在线观看视频| 97精品视频在线观看| 国产麻豆精品人妻av| 东京干手机福利视频| 成人30分钟免费视频| 这里只有精品双飞在线播放| 久草视频在线看免费| 久久久久久cao我的性感人妻| 日韩精品中文字幕福利| 日日夜夜精品一二三| 色婷婷综合激情五月免费观看| 亚洲自拍偷拍综合色| 中文字幕在线观看国产片| 3344免费偷拍视频| 中文字幕人妻一区二区视频| 亚洲国产美女一区二区三区软件| 精品一区二区三区欧美| 东京干手机福利视频| 亚洲精品无码久久久久不卡 | 天堂v男人视频在线观看| 亚洲 欧美 精品 激情 偷拍| 成人免费毛片aaaa| 人妻爱爱 中文字幕| 国产欧美精品一区二区高清| 日韩熟女av天堂系列| 亚洲 自拍 色综合图| 亚洲蜜臀av一区二区三区九色 | 国产97视频在线精品| av大全在线播放免费| 老司机深夜免费福利视频在线观看| av乱码一区二区三区| 欧美一区二区三区啪啪同性| 在线免费观看黄页视频| 免费观看理论片完整版| 天天操天天干天天艹| 五十路熟女人妻一区二区9933| 中文字幕一区二 区二三区四区| 欧美成人猛片aaaaaaa| 亚洲欧美国产综合777| 欧美在线偷拍视频免费看| 精品亚洲中文字幕av| 性感美女高潮视频久久久| 视频一区二区综合精品| 久久精品亚洲成在人线a| 精品人人人妻人人玩日产欧| 中文字幕,亚洲人妻| 动漫av网站18禁| 操人妻嗷嗷叫视频一区二区| 国产午夜激情福利小视频在线| 99精品免费久久久久久久久a| 福利视频一区二区三区筱慧| 国产精品免费不卡av| 天天插天天色天天日| 精品人妻一二三区久久| 国产精品一区二区av国| 11久久久久久久久久久| 亚洲老熟妇日本老妇| 2020中文字幕在线播放| 日本性感美女视频网站| 97国产福利小视频合集| 免费岛国喷水视频在线观看 | 99热99这里精品6国产| 初美沙希中文字幕在线| 11久久久久久久久久久| 日本在线一区二区不卡视频| 亚洲国际青青操综合网站| 精品国产污污免费网站入口自 | 天天干天天操天天扣| 国产亚洲欧美视频网站| 久久丁香花五月天色婷婷| 国产普通话插插视频| 国产综合视频在线看片| 中文字幕欧美日韩射射一| 欧美专区日韩专区国产专区| 午夜在线观看一区视频| 天天日天天摸天天爱| 337p日本大胆欧美人| 亚洲精品国产久久久久久| 国产日本欧美亚洲精品视| 中文字幕在线乱码一区二区 | 99热久久极品热亚洲| 班长撕开乳罩揉我胸好爽| 少妇人妻二三区视频 | 啪啪啪啪啪啪啪啪av| 亚洲成人国产av在线| 人妻无码中文字幕专区| 欧美专区第八页一区在线播放| 精品国产成人亚洲午夜| 沙月文乃人妻侵犯中文字幕在线 | 五月色婷婷综合开心网4438| 大陆胖女人与丈夫操b国语高清| 国产内射中出在线观看| 欧美偷拍亚洲一区二区| 青青草人人妻人人妻| 日韩午夜福利精品试看| 亚洲人妻30pwc| 精品人妻伦一二三区久| 欧美一级视频一区二区| 不卡精品视频在线观看| 亚洲av香蕉一区区二区三区犇| 97人妻人人澡爽人人精品| 日韩精品啪啪视频一道免费| 日本少妇的秘密免费视频| 成年人黄色片免费网站| 最近中文2019年在线看| 99人妻视频免费在线| 午夜福利资源综合激情午夜福利资| 精品高跟鞋丝袜一区二区| 国产又粗又硬又猛的毛片视频| 区一区二区三国产中文字幕| 日本少妇人妻xxxxxhd| 中文字幕乱码人妻电影| 国产露脸对白在线观看| 端庄人妻堕落挣扎沉沦| 中文字幕第三十八页久久| 国产精品成人xxxx| 亚洲 清纯 国产com| 唐人色亚洲av嫩草| 中文字幕—97超碰网| 啊啊啊视频试看人妻| huangse网站在线观看| 亚洲精品成人网久久久久久小说| av老司机精品在线观看| 日本成人不卡一区二区| 天天干天天日天天干天天操| 91中文字幕免费在线观看| 专门看国产熟妇的网站| 一区二区视频视频视频| 3337p日本欧洲大胆色噜噜| 日韩欧美中文国产在线| 中文字幕第一页国产在线| 亚洲av自拍天堂网| 91超碰青青中文字幕| 99热久久极品热亚洲| 在线视频精品你懂的| 色综合久久无码中文字幕波多| 美女福利视频网址导航| 在线观看国产免费麻豆| 亚洲少妇高潮免费观看| 天天日天天干天天要| 久久久精品欧洲亚洲av| 国产美女精品福利在线| 欧美一区二区三区激情啪啪啪| 亚洲av成人网在线观看| 韩国女主播精品视频网站| 亚洲嫩模一区二区三区| 久草视频中文字幕在线观看| 国产视频网站一区二区三区| 一级黄色片夫妻性生活| 黄色资源视频网站日韩| 亚洲女人的天堂av| 午夜精品在线视频一区| 成人18禁网站在线播放| mm131美女午夜爽爽爽| 国产视频网站国产视频| 婷婷久久久综合中文字幕| 婷婷综合亚洲爱久久| 自拍偷拍日韩欧美一区二区| 成人18禁网站在线播放| 国产精品久久久久久久精品视频 | 国产成人精品亚洲男人的天堂| 国产精品自拍偷拍a| 亚洲另类在线免费观看| 少妇被强干到高潮视频在线观看 | 人人妻人人澡人人爽人人dvl| 91精品国产麻豆国产| 中文字幕视频一区二区在线观看| 亚洲高清国产一区二区三区| av欧美网站在线观看| 快点插进来操我逼啊视频| 国产精品成久久久久三级蜜臀av| 又大又湿又爽又紧A视频| 精品久久婷婷免费视频| 久久久久久国产精品| 在线免费观看欧美小视频| 自拍偷拍一区二区三区图片| 欧美乱妇无乱码一区二区| 亚洲欧美成人综合视频| 一区二区三区毛片国产一区| 在线视频自拍第三页| 天天干天天搞天天摸| 制丝袜业一区二区三区| 又粗又硬又猛又黄免费30| 久久精品美女免费视频| 五十路av熟女松本翔子| 国产精品黄片免费在线观看| 99一区二区在线观看| 偷拍自拍视频图片免费| 91综合久久亚洲综合| 久久久久久久精品成人热| 自拍偷拍亚洲另类色图| 99久久成人日韩欧美精品| 日本美女成人在线视频| 午夜精品福利一区二区三区p| 天天爽夜夜爽人人爽QC| 日日操综合成人av| 久久这里有免费精品| 久久久久久久久久一区二区三区| 91p0rny九色露脸熟女| 日韩北条麻妃一区在线| 色伦色伦777国产精品| 十八禁在线观看地址免费 | 国产使劲操在线播放| 久久热久久视频在线观看| 中文字幕亚洲久久久| 午夜精品福利91av| 涩爱综合久久五月蜜臀| 美女张开腿让男生操在线看| 天天射夜夜操狠狠干| 亚洲 国产 成人 在线| 成人18禁网站在线播放| 偷拍美女一区二区三区| 不卡一区一区三区在线| 亚洲成高清a人片在线观看| 国产一区二区久久久裸臀| 女生被男生插的视频网站| 免费av岛国天堂网站| www天堂在线久久| 免费费一级特黄真人片| 日本少妇精品免费视频| 久草视频中文字幕在线观看| 97青青青手机在线视频| 欧美一区二区三区久久久aaa| 91国内精品自线在拍白富美| 日日操综合成人av| 精品国产乱码一区二区三区乱| 中国无遮挡白丝袜二区精品| 自拍偷拍日韩欧美一区二区| 欧亚日韩一区二区三区观看视频| 日本熟妇一区二区x x| 免费十精品十国产网站| 欧美成人一二三在线网| 国产精品视频欧美一区二区 | 日韩欧美亚洲熟女人妻| 在线观看免费视频色97| 亚洲 中文 自拍 无码| 人妻丰满熟妇综合网| 粉嫩欧美美人妻小视频| 中文字幕亚洲久久久| 天堂av狠狠操蜜桃| 香港三日本三韩国三欧美三级| 中文字幕国产专区欧美激情| 日本一道二三区视频久久| 端庄人妻堕落挣扎沉沦| 爆乳骚货内射骚货内射在线| 亚洲免费va在线播放| 一区二区三区的久久的蜜桃的视频| 亚洲av午夜免费观看| 大鸡巴操b视频在线| 亚洲 欧美 自拍 偷拍 在线| 人妻3p真实偷拍一二区| 91国偷自产一区二区三区精品| 丝袜肉丝一区二区三区四区在线| 亚洲国产欧美国产综合在线| 激情内射在线免费观看| 黄色成人在线中文字幕| 欧美va亚洲va天堂va| 亚洲一区二区激情在线| 天天操天天操天天碰| 欧美aa一级一区三区四区 | 日韩在线视频观看有码在线| 亚洲一级 片内射视正片| 92福利视频午夜1000看| 日本a级视频老女人| 天天操天天干天天日狠狠插| 亚洲av天堂在线播放| 成年人黄视频在线观看| 日韩欧美高清免费在线| 亚洲成人午夜电影在线观看| 一区二区视频视频视频| 18禁美女黄网站色大片下载| aaa久久久久久久久| 伊人开心婷婷国产av| 久久热这里这里只有精品| 亚洲熟妇久久无码精品| 国产午夜激情福利小视频在线| 免费在线福利小视频| av大全在线播放免费| 激情五月婷婷综合色啪| 三级等保密码要求条款| 一区二区三区欧美日韩高清播放| 1024久久国产精品| 久久精品美女免费视频| 只有精品亚洲视频在线观看| 黄色成年网站午夜在线观看 | tube69日本少妇| 毛茸茸的大外阴中国视频| 久久h视频在线观看| 亚洲美女美妇久久字幕组| 2022中文字幕在线| 韩国三级aaaaa高清视频| 九色视频在线观看免费| 日韩国产乱码中文字幕| av网址国产在线观看| 欧美伊人久久大香线蕉综合| 日美女屁股黄邑视频| 熟女在线视频一区二区三区| 亚洲成人av一区在线| 午夜av一区二区三区| 唐人色亚洲av嫩草| av在线免费中文字幕| 欧美日韩精品永久免费网址| 宅男噜噜噜666免费观看| 久久久极品久久蜜桃| 成人在线欧美日韩国产| 天干天天天色天天日天天射| 日本性感美女写真视频| 亚洲国产免费av一区二区三区| 欧美视频一区免费在线| 中文字幕在线欧美精品| 欧美精产国品一二三产品价格| 黄工厂精品视频在线观看| 亚洲欧美一区二区三区爱爱动图| 欧美色婷婷综合在线| 天天干天天啪天天舔| 欧美老鸡巴日小嫩逼| 国产成人自拍视频播放| 青娱乐极品视频青青草| 日本中文字幕一二区视频| 亚洲国产第一页在线观看| 四虎永久在线精品免费区二区| 99精品亚洲av无码国产另类| 97精品人妻一区二区三区精品| 在线观看视频一区麻豆| 大鸡吧插入女阴道黄色片| 欧美亚洲国产成人免费在线| 同居了嫂子在线播高清中文| 91啪国自产中文字幕在线| 婷婷久久一区二区字幕网址你懂得| 爆乳骚货内射骚货内射在线| 鸡巴操逼一级黄色气| 岛国毛片视频免费在线观看| 大陆胖女人与丈夫操b国语高清| 999久久久久999| 天天干天天日天天谢综合156| 中文字幕中文字幕人妻| 非洲黑人一级特黄片| 国产麻豆精品人妻av| 最近中文字幕国产在线| 天天日天天干天天要| 午夜成午夜成年片在线观看| 一个人免费在线观看ww视频| 日本熟妇色熟妇在线观看| 动漫av网站18禁| 亚洲精品精品国产综合| 国产亚洲欧美视频网站| 扒开让我视频在线观看| 综合精品久久久久97| 新婚人妻聚会被中出| 美女骚逼日出水来了| 91试看福利一分钟| 夜色17s精品人妻熟女| 在线可以看的视频你懂的| 日韩精品中文字幕福利| 色综合色综合色综合色| 亚洲午夜伦理视频在线| 国产一区二区视频观看| 亚洲偷自拍高清视频| 亚洲精品在线资源站| 国产福利小视频大全| 91人妻人人做人人爽在线| 欧美xxx成人在线| 精品乱子伦一区二区三区免费播 | 婷婷色中文亚洲网68| 日韩av有码一区二区三区4| 日本免费午夜视频网站| 国产成人午夜精品福利| 天天日天天日天天擦| 国产精品亚洲在线观看| 亚洲 国产 成人 在线| 亚洲偷自拍高清视频| 国产高清精品一区二区三区| 国产成人自拍视频播放| 日韩在线中文字幕色| 蜜桃色婷婷久久久福利在线| 精品一区二区三四区| 久草电影免费在线观看| 成人午夜电影在线观看 久久| 夜女神免费福利视频| okirakuhuhu在线观看| 日韩欧美一级aa大片| 99精品亚洲av无码国产另类 | 青青在线视频性感少妇和隔壁黑丝 | 98精产国品一二三产区区别| 区一区二区三国产中文字幕| 亚洲av香蕉一区区二区三区犇| 色哟哟在线网站入口| 欧美亚洲一二三区蜜臀| 不卡日韩av在线观看| 狠狠躁夜夜躁人人爽天天久天啪| 免费手机黄页网址大全| 一区二区三区四区五区性感视频 | 天天色天天操天天透| 九色精品视频在线播放| 中文字幕人妻被公上司喝醉在线| 中文字幕日韩精品日本| 超碰中文字幕免费观看| 亚洲免费在线视频网站| 黑人乱偷人妻中文字幕| 国产丰满熟女成人视频| av高潮迭起在线观看| 在线观看视频网站麻豆| 视频一区二区综合精品| 亚洲中文精品人人免费| 国产片免费观看在线观看| 久久热这里这里只有精品| 国产在线一区二区三区麻酥酥 | 超级福利视频在线观看| 亚洲男人在线天堂网| 国产精品成久久久久三级蜜臀av| 国产极品精品免费视频| 亚洲熟女综合色一区二区三区四区| 天天日夜夜操天天摸| 日本一区二区三区免费小视频| 欧美黑人性猛交xxxxⅹooo| 青青草原色片网站在线观看| 亚洲护士一区二区三区| 视频一区 视频二区 视频| 护士小嫩嫩又紧又爽20p| 精品黑人一区二区三区久久国产| 99的爱精品免费视频| ka0ri在线视频| 97香蕉碰碰人妻国产樱花| 护士特殊服务久久久久久久| 91天堂天天日天天操| 91老熟女连续高潮对白| 天天色天天舔天天射天天爽 | 久久精品国产23696| 五十路熟女av天堂| 国产精彩对白一区二区三区| 国产黄色高清资源在线免费观看| 欧美精品黑人性xxxx| 狠狠操狠狠操免费视频| 桃色视频在线观看一区二区| 91精品国产综合久久久蜜| 中文字幕高清免费在线人妻| 亚洲av在线观看尤物| 操人妻嗷嗷叫视频一区二区| 99热这里只有精品中文| 在线网站你懂得老司机| 天天操夜夜操天天操天天操| 欧美视频中文一区二区三区| 97色视频在线观看| 91香蕉成人app下载| 99久久久无码国产精品性出奶水 | 亚洲第一黄色在线观看| 97欧洲一区二区精品免费| 亚洲成人激情视频免费观看了| 青青青青青免费视频| 91麻豆精品秘密入口在线观看| 欧美一区二区中文字幕电影| 亚洲1069综合男同| 日韩亚洲高清在线观看| 888亚洲欧美国产va在线播放| 国产高潮无码喷水AV片在线观看| 亚洲欧美日韩视频免费观看| 在线国产中文字幕视频| 亚洲久久午夜av一区二区| AV无码一区二区三区不卡| 99精品视频在线观看免费播放 | 久久这里有免费精品| 91极品新人『兔兔』精品新作| 天天躁日日躁狠狠躁躁欧美av| 中文字幕 亚洲av| 精品91高清在线观看| 亚洲成av人无码不卡影片一| 国产亚州色婷婷久久99精品| 久久久久久97三级| 中文字幕AV在线免费看 | 51精品视频免费在线观看| 人妻少妇一区二区三区蜜桃| 国产精品3p和黑人大战| 亚洲福利午夜久久久精品电影网| 老司机欧美视频在线看| 黄色视频在线观看高清无码| 98精产国品一二三产区区别| 亚洲自拍偷拍精品网| 亚洲福利精品视频在线免费观看| 99精品视频在线观看婷婷| 国产精品一二三不卡带免费视频| aⅴ五十路av熟女中出| 这里有精品成人国产99| 精品老妇女久久9g国产| 91九色porny国产蝌蚪视频| 亚洲国产欧美一区二区三区…| 亚洲午夜电影之麻豆| 欧美aa一级一区三区四区| ka0ri在线视频| 亚洲中文字幕综合小综合| 国产麻豆国语对白露脸剧情| 国产亚州色婷婷久久99精品| 男人的天堂av日韩亚洲| 91p0rny九色露脸熟女| 亚洲熟妇无码一区二区三区| 亚洲综合在线观看免费| aiss午夜免费视频| 欧美亚洲国产成人免费在线 | 人妻少妇一区二区三区蜜桃| 日本韩国免费一区二区三区视频 | 欧美交性又色又爽又黄麻豆| 福利在线视频网址导航| 家庭女教师中文字幕在线播放| 一级A一级a爰片免费免会员| 国产精品女邻居小骚货| 日韩精品啪啪视频一道免费| 精品国产乱码一区二区三区乱| 亚洲一区二区三区偷拍女厕91| 亚洲中文字幕乱码区| 日韩一区二区三区三州| 免费一级特黄特色大片在线观看| 最新97国产在线视频| 在线观看日韩激情视频| 视频一区 二区 三区 综合| 国产chinesehd精品麻豆| 大香蕉福利在线观看| 午夜av一区二区三区| 亚洲av无码成人精品区辽| 日本最新一二三区不卡在线 | 狠狠躁狠狠爱网站视频| 婷婷色国产黑丝少妇勾搭AV| 亚洲国产中文字幕啊啊啊不行了| 大胸性感美女羞爽操逼毛片| 真实国模和老外性视频| 亚洲精品乱码久久久久久密桃明| 视频 国产 精品 熟女 | 五月婷婷在线观看视频免费| 夜夜操,天天操,狠狠操| 大骚逼91抽插出水视频| 日韩av熟妇在线观看| 欧美性感尤物人妻在线免费看| 青青青视频自偷自拍38碰| 人妻久久久精品69系列| 天天操夜夜骑日日摸| 性感美女福利视频网站| 1区2区3区4区视频在线观看| 天天躁日日躁狠狠躁av麻豆| 日韩中文字幕精品淫| 亚洲国产第一页在线观看| 国产亚洲精品视频合集| 久久精品亚洲国产av香蕉| 国产亚洲视频在线观看| 日韩精品二区一区久久| 亚洲一级av大片免费观看| 国产成人自拍视频播放| 日韩中文字幕精品淫| 女蜜桃臀紧身瑜伽裤| 亚洲欧美成人综合视频| 高潮喷水在线视频观看| 性色av一区二区三区久久久 | 色综合久久五月色婷婷综合| 青青在线视频性感少妇和隔壁黑丝| 亚洲高清视频在线不卡| 男生舔女生逼逼的视频| 国产日本欧美亚洲精品视| 日韩a级黄色小视频| 高清成人av一区三区| 欧洲国产成人精品91铁牛tv| 亚洲激情av一区二区| 精彩视频99免费在线| 青青青视频自偷自拍38碰| 视频一区二区三区高清在线| 午夜的视频在线观看| 护士小嫩嫩又紧又爽20p| 国产精品自拍视频大全| av网站色偷偷婷婷网男人的天堂| 国产亚洲视频在线二区| 国产精品视频一区在线播放| 亚洲午夜福利中文乱码字幕| 黄色无码鸡吧操逼视频| 亚洲护士一区二区三区| 亚洲综合另类精品小说| 精品区一区二区三区四区人妻| 久久久久久久久久一区二区三区| 97年大学生大白天操逼| 欧美香蕉人妻精品一区二区| 91精品啪在线免费| 一二三区在线观看视频| 亚洲自拍偷拍精品网| 日韩欧美在线观看不卡一区二区| 欲满人妻中文字幕在线| 亚洲欧美日韩视频免费观看| 日本在线不卡免费视频| 搡老熟女一区二区在线观看| 女警官打开双腿沦为性奴| 玖玖一区二区在线观看| 涩涩的视频在线观看视频| 久草福利电影在线观看| 狠狠的往里顶撞h百合| 在线网站你懂得老司机| 香蕉aⅴ一区二区三区| 久草视频首页在线观看| 综合一区二区三区蜜臀| 国产综合精品久久久久蜜臀| 91精品国产黑色丝袜| 中文字幕在线第一页成人| 亚洲中文精品人人免费| 成人av亚洲一区二区| 亚洲一区二区三区精品乱码| 天天躁日日躁狠狠躁躁欧美av | 天天爽夜夜爽人人爽QC| 偷拍3456eee| 唐人色亚洲av嫩草| 国产亚洲欧美另类在线观看| 日日夜夜狠狠干视频| 欧美熟妇一区二区三区仙踪林| 欧美综合婷婷欧美综合| 动色av一区二区三区| 国产精品中文av在线播放| 成人24小时免费视频| avjpm亚洲伊人久久| 人人爱人人妻人人澡39| 在线观看免费视频色97| 精品老妇女久久9g国产| 97小视频人妻一区二区| 亚洲少妇高潮免费观看| 久久久久五月天丁香社区| 天堂av中文在线最新版| 婷婷色国产黑丝少妇勾搭AV| 人妻少妇中文有码精品| av线天堂在线观看| 在线观看免费视频色97| 久久香蕉国产免费天天| 91精品一区二区三区站长推荐| 亚洲一区二区三区精品视频在线| 91she九色精品国产| av线天堂在线观看| 中文字幕中文字幕人妻| 3344免费偷拍视频| 91天堂精品一区二区| 午夜福利人人妻人人澡人人爽| 操的小逼流水的文章| 天天艹天天干天天操| 一区二区三区蜜臀在线| 亚洲午夜精品小视频| 国产高清在线观看1区2区| 99精品国产aⅴ在线观看| 92福利视频午夜1000看| 国产视频在线视频播放| 国产福利在线视频一区| 亚洲av天堂在线播放| 蜜臀av久久久久蜜臀av麻豆| 精品亚洲在线免费观看| 骚逼被大屌狂草视频免费看| 国产精品久久久久网| 熟女人妻三十路四十路人妻斩| 日韩美女福利视频网| av中文字幕福利网| 把腿张开让我插进去视频| 4个黑人操素人视频网站精品91 | 免费福利av在线一区二区三区| 9l人妻人人爽人人爽| 大鸡八强奸视频在线观看| 超碰97人人做人人爱| 91国内视频在线观看| 久草视频 久草视频2| 狠狠的往里顶撞h百合| 免费福利av在线一区二区三区| 国产麻豆乱子伦午夜视频观看 | 99re6热在线精品| 久草福利电影在线观看| 91小伙伴中女熟女高潮| 亚洲国产在线精品国偷产拍| 亚洲老熟妇日本老妇| 五月激情婷婷久久综合网| 黑人3p华裔熟女普通话| 男人插女人视频网站| 老鸭窝在线观看一区| 久久久人妻一区二区| 不卡日韩av在线观看| 日韩加勒比东京热二区| 狠狠操狠狠操免费视频| 亚洲超碰97人人做人人爱| 在线免费观看国产精品黄色| 93人妻人人揉人人澡人人| 91久久人澡人人添人人爽乱| 天天日天天透天天操| 亚洲中文字幕校园春色| 水蜜桃一区二区三区在线观看视频 | 一区二区久久成人网| 国产 在线 免费 精品| 黄色成年网站午夜在线观看| 天天干天天操天天摸天天射| 日本午夜爽爽爽爽爽视频在线观看| 国产精品黄页网站视频| 亚洲熟妇久久无码精品| 国产亚洲四十路五十路| 综合激情网激情五月天| 18禁美女无遮挡免费| 成人高潮aa毛片免费| 亚洲成人国产综合一区| 欧美精品黑人性xxxx| 99人妻视频免费在线| 日韩视频一区二区免费观看| 亚洲国产40页第21页| 日韩国产乱码中文字幕| 超级av免费观看一区二区三区| 姐姐的朋友2在线观看中文字幕 | 自拍偷拍亚洲精品第2页| tube69日本少妇| 亚洲一区制服丝袜美腿| 日韩黄色片在线观看网站| 久久麻豆亚洲精品av| 亚洲人人妻一区二区三区 | 内射久久久久综合网| 久久美欧人妻少妇一区二区三区| 欧美久久一区二区伊人| 欧美国品一二三产区区别| 青青热久免费精品视频在线观看| 天天做天天爽夜夜做少妇| 一区二区视频在线观看视频在线| 97精品视频在线观看| 日本av熟女在线视频| 99久久99一区二区三区| 免费在线福利小视频| 一级黄片大鸡巴插入美女| 男生用鸡操女生视频动漫| 欧美专区第八页一区在线播放| 青青色国产视频在线| 91在线视频在线精品3| 好太好爽好想要免费| 玩弄人妻熟妇性色av少妇| 在线视频精品你懂的| 亚洲伊人av天堂有码在线| 青青青爽视频在线播放| 欧美男同性恋69视频| 4个黑人操素人视频网站精品91| 精品91自产拍在线观看一区| 好男人视频在线免费观看网站| 欧美一区二区三区乱码在线播放| 亚洲精品午夜久久久久| av中文字幕在线导航| 天天日天天干天天舔天天射| 黄色在线观看免费观看在线| 蜜桃臀av蜜桃臀av| 亚洲老熟妇日本老妇| 蜜桃精品久久久一区二区| 大香蕉大香蕉大香蕉大香蕉大香蕉| 91九色porny国产蝌蚪视频| 精品久久久久久久久久久久人妻| 欧美亚洲偷拍自拍色图| 岛国青草视频在线观看| 色狠狠av线不卡香蕉一区二区| 视频一区二区综合精品| 亚洲2021av天堂| 婷婷午夜国产精品久久久| 黄色视频在线观看高清无码| 加勒比视频在线免费观看| 91麻豆精品91久久久久同性| 亚洲 欧美 自拍 偷拍 在线| 国产一区成人在线观看视频| 乱亲女秽乱长久久久| 亚洲日本一区二区三区| 888亚洲欧美国产va在线播放| 黄片三级三级三级在线观看 | 3337p日本欧洲大胆色噜噜| 国产女人叫床高潮大片视频| 国产一区二区神马久久| 欧美日韩熟女一区二区三区| 中文字幕无码日韩专区免费| 亚洲欧美日韩视频免费观看| 在线制服丝袜中文字幕| 国产亚洲天堂天天一区| 日本少妇人妻xxxxx18| 亚洲欧美国产麻豆综合| 久久精品36亚洲精品束缚| 欧洲亚洲欧美日韩综合| 黄色成年网站午夜在线观看| 亚洲av男人的天堂你懂的| 亚洲美女美妇久久字幕组| 国产av自拍偷拍盛宴| 91久久人澡人人添人人爽乱| 免费在线看的黄网站| 亚洲av无硬久久精品蜜桃| 亚洲av无女神免非久久| 亚洲综合图片20p| 51国产成人精品视频| av中文字幕在线导航| 国产女人叫床高潮大片视频| aⅴ精产国品一二三产品| 亚洲国产香蕉视频在线播放| 国产一区av澳门在线观看| 年轻的人妻被夫上司侵犯| 不卡日韩av在线观看| 亚洲va国产va欧美精品88| 国产熟妇人妻ⅹxxxx麻豆| 亚洲美女美妇久久字幕组| 插小穴高清无码中文字幕| 韩国男女黄色在线观看| 熟女视频一区,二区,三区| 亚洲欧美久久久久久久久| 一级黄片久久久久久久久| 91免费放福利在线观看| 97人人妻人人澡人人爽人人精品| 91天堂天天日天天操| 天天干天天操天天扣| 一区二区三区国产精选在线播放| 中文字幕高清资源站| 美女张开两腿让男人桶av| 三级等保密码要求条款| 18禁无翼鸟成人在线| 亚洲av无硬久久精品蜜桃| 国产女人被做到高潮免费视频 | 熟女人妻在线中出观看完整版| 99热色原网这里只有精品| 女同性ⅹxx女同h偷拍| 人人妻人人爽人人澡人人精品| 亚洲熟妇x久久av久久| 日美女屁股黄邑视频| av中文字幕国产在线观看| 97人妻人人澡爽人人精品| 亚洲图片偷拍自拍区| 在线免费观看国产精品黄色| 亚洲天堂精品福利成人av| 中文字幕av男人天堂| 青青青青爽手机在线| 黄色视频成年人免费观看| 中文字幕一区二区亚洲一区| 日韩美女综合中文字幕pp| 精产国品久久一二三产区区别| AV无码一区二区三区不卡| 欧美国产亚洲中英文字幕| 做爰视频毛片下载蜜桃视频1| sejizz在线视频| 日本av高清免费网站| 五十路av熟女松本翔子| 91国偷自产一区二区三区精品| 欧美激情电影免费在线| 男女啪啪啪啪啪的网站| 日辽宁老肥女在线观看视频| 2012中文字幕在线高清| 国产丰满熟女成人视频| 黄色在线观看免费观看在线| 日韩欧美一级精品在线观看| 精品首页在线观看视频| 偷拍3456eee| 亚洲在线一区二区欧美| 午夜精品福利91av| www日韩a级s片av| 亚洲第一黄色在线观看| 激情综合治理六月婷婷| 国产乱子伦一二三区| 欧美在线一二三视频| 国产在线自在拍91国语自产精品 | 污污小视频91在线观看| 久久久超爽一二三av| 亚洲国产成人无码麻豆艾秋| 久碰精品少妇中文字幕av| 亚洲女人的天堂av| 久久精品国产23696| 亚洲av日韩av网站| 馒头大胆亚洲一区二区| 黑人变态深video特大巨大| 在线观看欧美黄片一区二区三区| 中国黄色av一级片| 亚洲精品av在线观看| 一二三中文乱码亚洲乱码one| 一级A一级a爰片免费免会员| 欲满人妻中文字幕在线| 欧美偷拍亚洲一区二区| 岛国一区二区三区视频在线| 精品国产在线手机在线| 久久香蕉国产免费天天| 国产精品自拍在线视频| 人妻久久无码中文成人| 偷拍自拍 中文字幕| 天天想要天天操天天干| 亚洲一级av无码一级久久精品| 黑人性生活视频免费看| 在线免费观看日本伦理| 天天干天天爱天天色| 少妇人妻100系列| 三级av中文字幕在线观看| 亚洲 中文 自拍 无码| 人妻丝袜av在线播放网址| 春色激情网欧美成人| 极品性荡少妇一区二区色欲| 99热这里只有精品中文| 亚洲一区二区激情在线| 93精品视频在线观看| 韩国男女黄色在线观看| 男人天堂最新地址av| 精品suv一区二区69| 91九色国产熟女一区二区| 中文字幕高清免费在线人妻 | 日本免费午夜视频网站| 国产在线自在拍91国语自产精品| 欧美黑人巨大性xxxxx猛交| 99精品国产自在现线观看| 五十路在线观看完整版| 国产一区二区久久久裸臀| 国产精品一区二区三区蜜臀av | 国产精品免费不卡av| 国语对白xxxx乱大交| 亚洲人一区二区中文字幕| 成人亚洲精品国产精品| 成人av免费不卡在线观看| 亚洲人妻30pwc| 2012中文字幕在线高清| 人妻少妇性色欲欧美日韩| 成人免费做爰高潮视频| 黑人乱偷人妻中文字幕| 91精品视频在线观看免费| 美日韩在线视频免费看| 在线观看国产免费麻豆| 久草视频福利在线首页| 久久精品国产999| 日韩精品中文字幕播放| 国产夫妻视频在线观看免费| 国产 在线 免费 精品| 中文字幕AV在线免费看 | 五十路在线观看完整版| 偷拍自拍福利视频在线观看| 日韩熟女av天堂系列| 日本福利午夜电影在线观看| 这里只有精品双飞在线播放| 欧美视频不卡一区四区| 亚洲va天堂va国产va久| 高清一区二区欧美系列| 欧美一区二区三区啪啪同性| 久久精品国产999| www,久久久,com| 亚洲一区二区久久久人妻| 日本xx片在线观看| 五月婷婷在线观看视频免费| 在线观看免费岛国av| 亚洲人成精品久久久久久久| 家庭女教师中文字幕在线播放| 2o22av在线视频| 操人妻嗷嗷叫视频一区二区| 久久久精品999精品日本| 中文字幕1卡1区2区3区| 亚洲av自拍偷拍综合| 国产熟妇乱妇熟色T区| 蜜桃久久久久久久人妻| 日本成人不卡一区二区| 国产成人综合一区2区| 国产精品久久久久久美女校花| 国际av大片在线免费观看| 日本成人不卡一区二区| 中文字幕在线永久免费播放| 日本女人一级免费片| 69精品视频一区二区在线观看| 粉嫩av蜜乳av蜜臀| 亚洲超碰97人人做人人爱| 一区二区三区av高清免费| 97精品视频在线观看| 亚洲Av无码国产综合色区| 青草青永久在线视频18| 国产精品久久久久久久女人18| 91亚洲精品干熟女蜜桃频道| 天天操,天天干,天天射| 国产日韩欧美美利坚蜜臀懂色| 91av中文视频在线| 人妻久久无码中文成人| 岛国一区二区三区视频在线| 夏目彩春在线中文字幕| 亚洲特黄aaaa片| av中文字幕福利网| 国产在线观看黄色视频| 久久久久五月天丁香社区| 天天日天天鲁天天操| 1000部国产精品成人观看视频| 三级av中文字幕在线观看| 护士特殊服务久久久久久久| 中文字幕人妻熟女在线电影| av网址国产在线观看| 91‖亚洲‖国产熟女| 精品av国产一区二区三区四区 | aiss午夜免费视频| 久久久久只精品国产三级| 青青在线视频性感少妇和隔壁黑丝 | 18禁免费av网站| 成人福利视频免费在线| 99热久久极品热亚洲| 欧美第一页在线免费观看视频| 亚洲熟女久久久36d| 91综合久久亚洲综合| 欧美中国日韩久久精品| 一区二区在线视频中文字幕| 国产精品久久9999| 欧洲欧美日韩国产在线| 换爱交换乱高清大片| 亚洲蜜臀av一区二区三区九色 | 性欧美日本大妈母与子| 在线观看欧美黄片一区二区三区 | 欧美老鸡巴日小嫩逼| 青青青艹视频在线观看| 亚洲欧美综合在线探花| 人妻丝袜av在线播放网址| 成人区人妻精品一区二视频| 在线视频精品你懂的| 精品人妻每日一部精品| 四虎永久在线精品免费区二区| 专门看国产熟妇的网站| 又粗又硬又猛又爽又黄的| 自拍偷拍,中文字幕| 国产亚洲四十路五十路| 精品久久久久久久久久久a√国产| 男人靠女人的逼视频| 午夜激情久久不卡一区二区| 国产大鸡巴大鸡巴操小骚逼小骚逼 | 亚洲国产成人无码麻豆艾秋| 国产黄色片蝌蚪九色91| 日韩精品一区二区三区在线播放| 2020中文字幕在线播放| 天天干天天操天天插天天日| 熟女人妻在线中出观看完整版| 成人精品在线观看视频| 日韩美女精品视频在线观看网站| 成人av免费不卡在线观看| huangse网站在线观看| 人妻凌辱欧美丰满熟妇| 特大黑人巨大xxxx| av中文字幕国产在线观看| 国产黄色大片在线免费播放| 夜夜嗨av蜜臀av| 蜜桃视频在线欧美一区| 中文乱理伦片在线观看| 性感美女高潮视频久久久| 亚洲 人妻 激情 中文| 国产精品探花熟女在线观看| 精品国产午夜视频一区二区| 沈阳熟妇28厘米大战黑人| 黄色视频在线观看高清无码| 这里有精品成人国产99| av中文字幕网址在线| 天天日天天敢天天干| 国产精品人妻一区二区三区网站| 久久美欧人妻少妇一区二区三区| 男人天堂av天天操| 人妻少妇精品久久久久久| 动漫黑丝美女的鸡巴| 国产麻豆剧果冻传媒app| av久久精品北条麻妃av观看| 天天干夜夜操啊啊啊| 青青草国内在线视频精选| 色吉吉影音天天干天天操| 五十路老熟女码av| 亚洲av琪琪男人的天堂| 黑人解禁人妻叶爱071| 欧美性受xx黑人性猛交| 最新中文字幕乱码在线| 国产欧美精品一区二区高清| 伊人精品福利综合导航| 国产成人精品午夜福利训2021| 欧美男人大鸡吧插女人视频| 亚洲老熟妇日本老妇| 人妻少妇亚洲精品中文字幕| 无码精品一区二区三区人| 丰满的继坶3中文在线观看| 人人妻人人人操人人人爽| jul—619中文字幕在线| 丰满的子国产在线观看| 成人性爱在线看四区| 亚洲在线一区二区欧美| 国产视频在线视频播放| 欧美亚洲免费视频观看| 2018最新中文字幕在线观看| 亚洲精品午夜aaa久久| 亚洲欧美人精品高清| 97超碰国语国产97超碰| 中文字幕视频一区二区在线观看| 中文字幕第一页国产在线| 成人网18免费视频版国产| 91在线免费观看成人| 久久久久久久精品成人热| 久草免费人妻视频在线| 亚洲无线观看国产高清在线| 欧美一级色视频美日韩| 超黄超污网站在线观看| 国产日韩欧美视频在线导航| 午夜影院在线观看视频羞羞羞| 一区二区三区精品日本| 天天日天天添天天爽| 一区二区熟女人妻视频| 欧美3p在线观看一区二区三区| 在线免费视频 自拍| 青青青青青青青青青青草青青| 精品一区二区亚洲欧美| 天堂v男人视频在线观看| 老鸭窝在线观看一区| 加勒比视频在线免费观看| 亚洲高清自偷揄拍自拍| 国产精品自偷自拍啪啪啪| 欧美黑人巨大性xxxxx猛交| 青青青青青青青在线播放视频| 91成人精品亚洲国产| 老师让我插进去69AV| 偷拍自拍 中文字幕| 2022国产精品视频| 色秀欧美视频第一页| 51国产成人精品视频| 99国内小视频在现欢看| 久草视频在线免播放| 日韩熟女av天堂系列| 国产精品成久久久久三级蜜臀av| 亚洲精品中文字幕下载| 一区二区熟女人妻视频| 日本少妇精品免费视频| 亚洲av日韩av第一区二区三区| 国产精品午夜国产小视频| 亚洲欧美色一区二区| 2o22av在线视频| 精品91高清在线观看| 2021国产一区二区| 国产美女一区在线观看| 视频一区二区在线免费播放| 天天干天天操天天插天天日| 亚洲av香蕉一区区二区三区犇 | 人妻丝袜精品中文字幕| 一区二区视频视频视频| 中文字幕在线观看极品视频| 欧美一区二区三区啪啪同性| 开心 色 六月 婷婷| 阴茎插到阴道里面的视频| av一本二本在线观看| 亚洲熟女久久久36d| 欧美视频不卡一区四区| 欧美成人综合视频一区二区| 2022精品久久久久久中文字幕| 超碰在线中文字幕一区二区| 蜜桃精品久久久一区二区| 综合页自拍视频在线播放| japanese五十路熟女熟妇| 国产成人精品午夜福利训2021 | 久久机热/这里只有| 护士小嫩嫩又紧又爽20p| 天天操天天爽天天干| 欧美va亚洲va天堂va| 国产熟妇一区二区三区av| 成年人黄视频在线观看| 99精品一区二区三区的区| 91精品国产高清自在线看香蕉网| 男人靠女人的逼视频| 亚洲男人的天堂a在线| 午夜毛片不卡免费观看视频| 99re久久这里都是精品视频| 亚洲欧美激情中文字幕| 欧美地区一二三专区| 狠狠躁夜夜躁人人爽天天天天97| 成人亚洲精品国产精品| 中文字幕高清资源站| 老鸭窝在线观看一区| 91国产资源在线视频| 91国产在线视频免费观看| 欧美另类一区二区视频| 小穴多水久久精品免费看| 老司机免费福利视频网| 亚洲av无硬久久精品蜜桃| 宅男噜噜噜666国产| 欲满人妻中文字幕在线| 国产97视频在线精品| 日日夜夜大香蕉伊人| 区一区二区三国产中文字幕| 手机看片福利盒子日韩在线播放| 欧美一级色视频美日韩| 日本熟妇喷水xxx| 亚洲激情偷拍一区二区| 亚洲av男人天堂久久| 亚洲成人线上免费视频观看| 欧洲国产成人精品91铁牛tv| 黑人解禁人妻叶爱071| 黄色三级网站免费下载| av在线观看网址av| 中文字幕 亚洲av| 班长撕开乳罩揉我胸好爽| 中文字幕之无码色多多| 91成人精品亚洲国产| 3344免费偷拍视频| 91欧美在线免费观看| 91精品资源免费观看| 真实国产乱子伦一区二区| 亚欧在线视频你懂的| 国产九色91在线视频| 美洲精品一二三产区区别| 男生舔女生逼逼视频| 色av色婷婷人妻久久久精品高清| 狠狠嗨日韩综合久久| xxx日本hd高清| 性色av一区二区三区久久久| 啊用力插好舒服视频| 日本丰满熟妇大屁股久久| 中文字幕亚洲久久久| 国产福利在线视频一区| 天天操天天干天天日狠狠插| 欲满人妻中文字幕在线| 亚洲av可乐操首页| 欧美怡红院视频在线观看| 国产普通话插插视频| 老司机福利精品免费视频一区二区| 日本乱人一区二区三区| 欧洲亚洲欧美日韩综合| 一级黄片大鸡巴插入美女| 在线免费观看欧美小视频| 精品一区二区亚洲欧美| 2o22av在线视频| 免费无码人妻日韩精品一区二区| 亚洲激情偷拍一区二区| 自拍偷拍亚洲精品第2页| 在线播放国产黄色av| 亚洲欧美激情人妻偷拍| 亚洲免费成人a v| 亚洲va国产va欧美va在线| 99热国产精品666| 老司机99精品视频在线观看| 五十路丰满人妻熟妇| 91国偷自产一区二区三区精品| 自拍偷拍 国产资源| 黄色无码鸡吧操逼视频| 扒开腿挺进肉嫩小18禁视频| 一区二区三区日本伦理| 自拍 日韩 欧美激情|