This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit a21e3a227b42f0f1edd098048ca2a47dcec37072
Author: Nitesh Koushik S <39699046+niteshkous...@users.noreply.github.com>
AuthorDate: Wed Sep 23 10:26:45 2020 +0530

    Document update
    
    Changes made as per the PR - 
"https://github.com/apache/camel-spring-boot/pull/172";
---
 docs/modules/ROOT/pages/spring-boot.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/spring-boot.adoc 
b/docs/modules/ROOT/pages/spring-boot.adoc
index 6b43056..226a293 100644
--- a/docs/modules/ROOT/pages/spring-boot.adoc
+++ b/docs/modules/ROOT/pages/spring-boot.adoc
@@ -132,14 +132,14 @@ The component supports 157 options, which are listed 
below.
 | *camel.component.properties.ignore-missing-location* | Whether to silently 
ignore if a location cannot be located, such as a properties file not found. | 
false | Boolean
 | *camel.component.properties.initial-properties* | Sets initial properties 
which will be used before any locations are resolved. The option is a 
java.util.Properties type. |  | String
 | *camel.component.properties.location* | A list of locations to load 
properties. You can use comma to separate multiple locations. This option will 
override any default locations and only use the locations from this option. |  
| String
-| *camel.component.properties.override-properties* | Sets a special list of 
override properties that take precedence and will use first, if a property 
exist. The option is a java.util.Properties type. |  | String
+| *camel.component.properties.override-properties* | Sets a special list of 
override properties that take precedence and will use first, if a property 
exists. The option is a java.util.Properties type. |  | String
 | *camel.component.properties.properties-parser* | To use a custom 
PropertiesParser. The option is a 
org.apache.camel.component.properties.PropertiesParser type. |  | String
 | *camel.component.properties.system-properties-mode* | Sets the JVM system 
property mode (0 = never, 1 = fallback, 2 = override). The default mode 
(override) is to use system properties if present, and override any existing 
properties. OS environment variable mode is checked before JVM system property 
mode | 2 | Integer
 | *camel.dataformat.enabled* | Global option to enable/disable dataformat 
auto-configuration, default is true. | true | Boolean
 | *camel.health.config* | Additional health check properties for fine grained 
configuration of health checks. |  | Map
 | *camel.health.config.allow-core-thread-time-out* | Sets whether to allow 
core threads to timeout |  | Boolean
 | *camel.health.config.enabled* | Set if the check associated to this 
configuration is enabled or not. Is default enabled. |  | Boolean
-| *camel.health.config.failure-threshold* | Set the number of failure before 
reporting the service as un-healthy. |  | Integer
+| *camel.health.config.failure-threshold* | Set the number of failures before 
reporting the service as un-healthy. |  | Integer
 | *camel.health.config.id* | Sets the id of this thread pool |  | String
 | *camel.health.config.interval* | Set the check interval in milli seconds. |  
| Long
 | *camel.health.config.keep-alive-time* | Sets the keep alive time for 
inactive threads |  | Long
@@ -155,7 +155,7 @@ The component supports 157 options, which are listed below.
 | *camel.health.routes-enabled* | Whether routes health check is enabled Is 
default enabled |  | Boolean
 | *camel.language.enabled* | Global option to enable/disable language 
auto-configuration, default is true. | true | Boolean
 | *camel.springboot.allow-use-original-message* | Sets whether to allow access 
to the original message from Camel's error handler, or from 
org.apache.camel.spi.UnitOfWork.getOriginalInMessage(). Turning this off can 
optimize performance, as defensive copy of the original message is not needed. 
Default is false. | false | Boolean
-| *camel.springboot.auto-startup* | Sets whether the object should 
automatically start when Camel starts. Important: Currently only routes can be 
disabled, as CamelContext's are always started. Note: When setting auto startup 
false on CamelContext then that takes precedence and no routes is started. You 
would need to start CamelContext explicit using the 
org.apache.camel.CamelContext.start() method, to start the context, and then 
you would need to start the routes manually using Camelcon [...]
+| *camel.springboot.auto-startup* | Sets whether the object should 
automatically start when Camel starts. Important: Currently only routes can be 
disabled, as CamelContext's are always started. Note: When setting auto startup 
false on CamelContext then that takes precedence and no routes are started. You 
would need to start CamelContext explicit using the 
org.apache.camel.CamelContext.start() method, to start the context, and then 
you would need to start the routes manually using Camelco [...]
 | *camel.springboot.backlog-tracing* | Sets whether backlog tracing is enabled 
or not. Default is false. | false | Boolean
 | *camel.springboot.bean-introspection-extended-statistics* | Sets whether 
bean introspection uses extended statistics. The default is false. | false | 
Boolean
 | *camel.springboot.bean-introspection-logging-level* | Sets the logging level 
used by bean introspection, logging activity of its usage. The default is 
TRACE. |  | LoggingLevel
@@ -175,7 +175,7 @@ The component supports 157 options, which are listed below.
 | *camel.springboot.java-routes-include-pattern* | Used for inclusive 
filtering component scanning of RouteBuilder classes with @Component 
annotation. The exclusive filtering takes precedence over inclusive filtering. 
The pattern is using Ant-path style pattern. Multiple patterns can be specified 
separated by comma. For example to include all classes starting with Foo use: 
&#42;&#42;/Foo* To include all routes form a specific package use: 
com/mycompany/foo/&#42; To include all routes for [...]
 | *camel.springboot.jmx-enabled* | Enable JMX in your Camel application. | 
true | Boolean
 | *camel.springboot.jmx-management-name-pattern* | The naming pattern for 
creating the CamelContext JMX management name. The default pattern is #name# | 
#name# | String
-| *camel.springboot.jmx-management-statistics-level* | Sets the JMX statistics 
level The level can be set to Extended to gather additional information The 
default value is Default. |  | ManagementStatisticsLevel
+| *camel.springboot.jmx-management-statistics-level* | Sets the JMX statistics 
level, the level can be set to Extended to gather additional information The 
default value is Default. |  | ManagementStatisticsLevel
 | *camel.springboot.lightweight* | Experimental: Configure the context to be 
lightweight. This will trigger some optimizations and memory reduction options. 
Lightweight context has some limitations. At this moment, dynamic endpoint 
destinations are not supported. | false | Boolean
 | *camel.springboot.load-type-converters* | Whether to load custom type 
converters by scanning classpath. This is used for backwards compatibility with 
Camel 2.x. Its recommended to migrate to use fast type converter loading by 
setting <tt>@Converter(generateLoader = true)</tt> on your custom type 
converter classes. | true | Boolean
 | *camel.springboot.log-debug-max-chars* | Is used to limit the maximum length 
of the logging Camel message bodies. If the message body is longer than the 
limit, the log message is clipped. Use -1 to have unlimited length. Use for 
example 1000 to log at most 1000 characters. | 0 | Integer

Reply via email to