Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaces deprecated camel.springboot.name property #154

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ management.endpoint.shutdown.enabled=true
# expose actuator endpoint via HTTP
management.endpoints.web.exposure.include=mappings,metrics,shutdown

camel.springboot.name = MyCamel
camel.main.name = MyCamel

# properties used in the route
metricsPeriod = 2s
Expand Down
2 changes: 1 addition & 1 deletion aot-basic/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ logging.level.org.apache.camel.health = DEBUG
logging.level.org.apache.camel.impl.health = DEBUG
logging.level.sample.camel = DEBUG

camel.springboot.name = MyCamelNative
camel.main.name = MyCamelNative

camel.springboot.main-run-controller: true

Expand Down
2 changes: 1 addition & 1 deletion arangodb/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## See the License for the specific language governing permissions and
## limitations under the License.
## ---------------------------------------------------------------------------
camel.springboot.name=ArangoDB
camel.main.name=ArangoDB
camel.springboot.main-run-controller=true
camel.component.arangodb.documentCollection=foo
camel.component.arangodb.user=root
Expand Down
2 changes: 1 addition & 1 deletion endpointdsl/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

# what to say
greeting = Hello World
2 changes: 1 addition & 1 deletion fhir-auth-tx/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fhirVersion=DSTU3
input=target/work/fhir/input

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

server.port=0

Expand Down
2 changes: 1 addition & 1 deletion fhir/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fhirVersion=R4
input=target/work/fhir/input

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

# to automatic shutdown the JVM after a period of time
#camel.springboot.duration-max-seconds=60
Expand Down
2 changes: 1 addition & 1 deletion health-checks/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ management.health.readinessState.enabled=true
# show verbose health details (/actuator/health) so you can see Camel information also
management.endpoint.health.show-details=always

camel.springboot.name = MyCamel
camel.main.name = MyCamel

# enable JMX which allows to also control health check
camel.springboot.jmx-enabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

camel.springboot.name=ssl-camel-server
camel.main.name=ssl-camel-server
camel.component.undertow.ssl-context-parameters=#serverConfig
camel.component.undertow.use-global-ssl-context-parameters=true
keystore-password=pass123
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

spring.profiles.active = ${sbProfile}
camel.springboot.name=ssl-client
camel.main.name=ssl-client
camel.component.http.use-global-ssl-context-parameters=true
management.endpoint.camelroutes.enabled=true
management.endpoint.camelroutes.read-only=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

spring.profiles.active = ${sbProfile}
camel.springboot.name=ssl-server
camel.main.name=ssl-server
management.endpoint.camelroutes.enabled=true
management.endpoint.camelroutes.read-only=true
management.endpoint.health.enabled=true
Expand Down
2 changes: 1 addition & 1 deletion infinispan/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
## limitations under the License.
## ---------------------------------------------------------------------------

camel.springboot.name=Infinispan
camel.main.name=Infinispan
camel.springboot.main-run-controller=true
camel.component.infinispan.hosts=localhost:11222
camel.component.infinispan.username=admin
Expand Down
2 changes: 1 addition & 1 deletion jolokia/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = CamelJolokia
camel.main.name = CamelJolokia

# what to say
greeting = Hello World
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# the name of Camel
camel.springboot.name = CamelLoadBalancerExample
camel.main.name = CamelLoadBalancerExample

# to configure logging levels
logging.level.org.springframework = INFO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

camel.springboot.name: CamelMailExchangeOAuth2
camel.main.name: CamelMailExchangeOAuth2

# Keep the application running
camel.springboot.main-run-controller: true
Expand Down
2 changes: 1 addition & 1 deletion master/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ logging.level.org.apache.camel.component.atomix = DEBUG
logging.level.org.apache.camel.component.master = DEBUG
logging.level.org.apache.camel.examples.cluster = DEBUG

camel.springboot.name = SampleClusteredRouteController
camel.main.name = SampleClusteredRouteController
camel.springboot.main-run-controller = true

2 changes: 1 addition & 1 deletion metrics/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
## ---------------------------------------------------------------------------

info.build.name=Example of sending camel metrics to Graphite
camel.springboot.name=camel-example-spring-boot-metrics
camel.main.name=camel-example-spring-boot-metrics
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = My2PcCamel
camel.main.name = My2PcCamel
# how often to trigger the timer (millis)
myPeriod = 3000

Expand Down
4 changes: 2 additions & 2 deletions observation/client/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name=Client
camel.main.name=Client
camel.springboot.main-run-controller=true

spring.application.name=${camel.springboot.name}
spring.application.name=${camel.main.name}
management.tracing.sampling.probability=1.0
management.endpoints.web.exposure.include=health,metrics,prometheus
server.port=5432
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name=Service1
camel.main.name=Service1
camel.springboot.main-run-controller=true

spring.application.name=${camel.springboot.name}
spring.application.name=${camel.main.name}
management.tracing.sampling.probability=1.0
management.endpoints.web.exposure.include=health,metrics,prometheus
server.port=6543
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name=Service2
camel.main.name=Service2
camel.springboot.main-run-controller=true

spring.application.name=${camel.springboot.name}
spring.application.name=${camel.main.name}
management.tracing.sampling.probability=1.0
management.endpoints.web.exposure.include=health,metrics,prometheus
server.port=7654
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = CamelPetStore
camel.main.name = CamelPetStore

# application configuration
petName = Tony the tiger
Expand Down
2 changes: 1 addition & 1 deletion platform-http/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel
2 changes: 1 addition & 1 deletion pojo/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# give Camel a name
camel.springboot.name = PojoExample
camel.main.name = PojoExample

# keep camel running
camel.springboot.main-run-controller = true
Expand Down
2 changes: 1 addition & 1 deletion quartz/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# give Camel a name
camel.springboot.name = Quartz-to-Log
camel.main.name = Quartz-to-Log

# keep camel running
camel.springboot.main-run-controller = true
Expand Down
2 changes: 1 addition & 1 deletion rabbitmq/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = RabbitCamel
camel.main.name = RabbitCamel

# to automatic shutdown the JVM after a period of time
#camel.springboot.duration-max-seconds=60
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name=Service1
camel.main.name=Service1
camel.springboot.main-run-controller=true

# the port number the service will use for accepting incoming HTTP requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = cxf-otel-even
camel.main.name = cxf-otel-even
camel.springboot.main-run-controller=true
service.random.url = http://localhost:8080
#logging.level.org.apache.cxf = TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = cxf-otel-odd
camel.main.name = cxf-otel-odd
camel.springboot.main-run-controller=true
service.random.url = http://localhost:8080
#logging.level.org.apache.cxf = TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = cxf-otel-random
camel.main.name = cxf-otel-random
camel.springboot.main-run-controller=true
service.random.url = http://localhost:8080
service.even.url = http://localhost:8081
Expand Down
2 changes: 1 addition & 1 deletion rest-cxf/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel
camel.springboot.main-run-controller=true
#logging.level.org.apache.cxf = TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

# to reconfigure the camel servlet context-path mapping to use /api/* instead of /camel/*
camel.servlet.mapping.context-path=/api/*
Expand Down
2 changes: 1 addition & 1 deletion rest-openapi/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

# to reconfigure the camel servlet context-path mapping to use /api/* instead of /camel/*
camel.servlet.mapping.context-path=/api/*
Expand Down
2 changes: 1 addition & 1 deletion route-reload/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = ReloadCamel
camel.main.name = ReloadCamel

# turn on route reloading on file changes
camel.springboot.routes-reload-enabled = true
Expand Down
2 changes: 1 addition & 1 deletion soap-cxf/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel
camel.springboot.main-run-controller=true

# logging.level.root=TRACE
Expand Down
2 changes: 1 addition & 1 deletion splitter-eip/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = CamelSpringBootSplitter
camel.main.name = CamelSpringBootSplitter

# required for generated Type Converter Loader - Camel 3.x way
camel.springboot.load-type-converters=true
Expand Down
2 changes: 1 addition & 1 deletion spring-jdbc/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
## limitations under the License.
## ---------------------------------------------------------------------------

camel.springboot.name = MyCamel
camel.main.name = MyCamel
camel.springboot.main-run-controller=true

camel.servlet.mapping.enabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ management.info.camel.enabled=true
management.info.camel.verbose=true

# the name of Camel
camel.springboot.name = SampleSupervisingRouteController
camel.main.name = SampleSupervisingRouteController

# route controller configuration
camel.springboot.routeControllerSuperviseEnabled = true
Expand Down
2 changes: 1 addition & 1 deletion tomcat-jdbc/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

spring.datasource.type=org.apache.tomcat.jdbc.pool.DataSource
// other spring datasource properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

## name of CamelContext
camel.springboot.name=mention
camel.main.name=mention

## This uses the Twitter 'cameltweet' account for testing purposes.
## do NOT use this twitter account in your applications!
Expand Down
2 changes: 1 addition & 1 deletion type-converter/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# the name of Camel
camel.springboot.name = CamelCustomConverterExample
camel.main.name = CamelCustomConverterExample

# required for generated Type Converter Loader - Camel 3.x way
camel.springboot.load-type-converters=true
Expand Down
2 changes: 1 addition & 1 deletion validator/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = SampleCamel
camel.main.name = SampleCamel

# properties used in the Camel route and beans
# --------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion variables/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = MyCamel
camel.main.name = MyCamel

# variables can be pre-configured on startup
camel.variable.greeting = Random number
Expand Down
2 changes: 1 addition & 1 deletion xml/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------

# the name of Camel
camel.springboot.name = SampleCamel
camel.main.name = SampleCamel

# to automatic shutdown the JVM after a period of time
#camel.springboot.duration-max-seconds=60
Expand Down