Questions tagged [spring-camel]

Spring wrapper over Apache Camel

more details here

586 questions
-1
votes
1 answer

Getting error springboot version 2.x to 3.0.5 and camel version 3.14.1 to 3.17.0

`To fix the vulnerability CVE-2023-20860 issue getting below error while changing the version spring-boot version 3.0.5 17 3.17.0 2.0 Camel-cfx…
-1
votes
1 answer

PAHO MQTT 5 throwing exception when using same clientId in routes

When using paho-mqtt5:test more than once with same clientId then it throw exception Client not connected but if i will use different clientId for each to and from then it will work fine 2021-10-05 19:25:28,650 ERROR…
William
  • 225
  • 4
  • 21
-1
votes
1 answer

What exactly is Hawtio?

I don't understand what exactly Hawtio does. If you could give an introduction to Hawtio: What exactly is it? What added value does it gives me as a Camel\ Spring developer? Please explain what Hawtio is.
ropes-nopes
  • 135
  • 1
  • 7
-1
votes
1 answer

Spring Boot - Do not resolve placeholders in the application.properties file

I'm using Spring Boot with the Camel framework. I need to save a property such as: output.file=file://C:/Users/bfrisco/Desktop/output?fileName=${headers.fileName} I need this raw string. I do not want Spring to try and resolve ${headers.fileName},…
Brice Frisco
  • 409
  • 1
  • 4
  • 15
-1
votes
1 answer

Messages not coming to Java Camel route application in sequence

The problem I am facing is very strange. My application is a Spring Boot application where I am using a Camel route to listen to AMQ 7 and then processing the message till it gets stored in a database or sent to another AMQ 7 instance. The issue is…
-1
votes
1 answer

How to read a gmail with Apache Camel

i am trying to read a gmail using the routebuilder() of apache camel. @Component class ReadEmailRouteBuilder(var stockLocationProperty: StockLocationProperty) : RouteBuilder() { override fun configure() { //TODO } } This is the start…
Alex
  • 53
  • 1
  • 8
-1
votes
2 answers

Camel: Poll Enrich with Aggregation

From the camel book, section 'Using pollEnrich to merge additional data with an existing message', it shows that you can merge the oldExchange(from the quarz) with the new one (from ftp). The problem is that I have a file from a topic(old Exchange)…
agata
  • 481
  • 2
  • 9
  • 29
-1
votes
2 answers

How to pass value of instance variable of route to another bean in camel

I have sample route like below and need to send value of outputStream to batchContentProcessor class to getBatchConent method..something like below..help me how to send instance variable value to method of bean
rocky
  • 753
  • 2
  • 10
  • 26
-1
votes
1 answer

ERROR:The type org.apache.log4j.Logger cannot be resolved. It is indirectly referenced from required .class files

Trying to upgrade a project from using Camel v2.21.2 to using Camel v2.22.0 This entails going from Spring v4.x to v5.x and from Spring-boot v1.5.x to Spring-boot v2.0.4.RELEASE. Project uses groovy-all 2.4.15. We are not using log4j in our project,…
Bhargav
  • 79
  • 1
  • 8
-1
votes
1 answer

How to track messages which was omitted between camel pipelines?

I have 2 routes: first: .... .to("file://" + REST_FILES + "?fileName=${header.filename}"); second: from("file://" + REST_FILES + "?idempotent=true") .... But camel doesn't route files in case if I try to transfer same file repeatedly. I want to…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
-1
votes
1 answer

Does camel allow to understand previous(source) pipileine in case of multiple from statements?

camel route: from("file://" + REST_FILES + "?idempotent=true") .from("file://" + FTP_FILES + "?idempotent=true") .process(new Processor() { @Override public void process(Exchange exchange) { } Is it possible to…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
-2
votes
1 answer

Apache Camel Split by start and end characters SOH and ETX

I have an spring boot application which have routes.xml being loaded on startup On the routes.xml, i have a MQ queue source that contains sample message SOH{123}{345}{4 5 6 }ETXSOH{111}{222}{3 3 3 }ETX where SOH = \u0001 and ETX = \u0003 When i…
dranoeL
  • 37
  • 7
-2
votes
1 answer

Log apache camel seda queue depth every second via a timer

How can I log actual seda queue depth every second on a timer. E.g. from("seda:messageParser?concurrentConsumers=5&size=5000) .process(messageProcessor) from("timer://sedaQueueDepthLogger?fixedRate=true") .to(LOG_SEDA_QUEUE_DEPTH) What should be…
nishant
  • 955
  • 2
  • 11
  • 27
-2
votes
1 answer

Is there any active community for apache camel like slack or any

While developing spring boot application with apache camel I facing lot of issues, could anyone please give active slack or any community links, so that I'll join in and take community help.
-2
votes
1 answer

How to change port hawtio, i run one megazord with spring camel rest and others

The title is auto-explicative. Basically i have one project with many technology, and need camel to EIP. I need hawtio run in another port. My pom.xml https://gist.github.com/andrealcantara/4a9d0a736f5c67ff0a6abc6d11e6febd and my…
1 2 3
39
40