This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git
The following commit(s) were added to refs/heads/main by this push:
new a0719c3 Fix example
a0719c3 is described below
commit a0719c31d6ffc367b30def02bd3ac1c4b69f531f
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Mar 12 14:16:49 2025 +0100
Fix example
---
spring-boot/src/main/resources/application.properties | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/spring-boot/src/main/resources/application.properties
b/spring-boot/src/main/resources/application.properties
index d60c4e1..c4f5469 100644
--- a/spring-boot/src/main/resources/application.properties
+++ b/spring-boot/src/main/resources/application.properties
@@ -16,7 +16,7 @@
## ---------------------------------------------------------------------------
# the name of Camel
-camel.springboot.name = MyCamel
+camel.main.name = MyCamel2
# what to say
greeting = Hello World
@@ -24,8 +24,11 @@ greeting = Hello World
# how often to trigger the timer (millis)
myPeriod = 2000
+# turn on dev console
+camel.main.devConsoleEnabled = true
+
# expose actuator endpoint via HTTP
-#management.endpoints.web.exposure.include=info,health,camel
+management.endpoints.web.exposure.include=info,health,camel
# show verbose health details (/actuator/health) so you can see Camel
information also
management.endpoint.health.show-details=always