Very informative video. Nobody on internet explained that well. You made my camel concepts clear. I am from a C++ background. I find difficult to adapt to Java and microservices world. I watched you Camel & EIP video then came here. Good job paji !! 🥰
You can definitely use Spring REST alongside Camel in a Spring Boot project. The choice depends on the complexity of your REST endpoints and how much integration logic is needed. Use Spring REST for simple, straightforward APIs, and Camel REST DSL for more complex routing and integration tasks.
I already have an example with POST. See here: github.com/jssaggu/camel-tutorial/blob/main/src/main/java/com/jss/camel/components/rest/RestDsl.java#L46
thanks for sharing.. i need a help to implement from sftp get the file and process the same fiel to restful webservice in apache camel .. Can you please suggest how to implement
add the project to git hub so that user is sure he is not doing any thing wrong, i AM getting white label error and all the classes are in sub package of where my main class is
I'm sorry for the inconvenience. I have made an effort to enhance the sound quality in the latest videos. Please do let me know if you notice an improvement.
I added the following post method to JavaDsl. It doesn't work. Can you help? from("rest:post:javadsl/weather?consumes=application/json") .inputType(WeatherDto.class) .process(this::saveWeatherDataAndSetToExchange); It returns this error: org.apache.camel.InvalidPayloadException: No body available of type: com.resutful.WeatherDto but has value: org.apache.camel.converter.stream.InputStreamCache@5901b85c of type: org.apache.camel.converter.stream.InputStreamCache on: HttpMessage@0x642d04e2.
Very informative video. Nobody on internet explained that well. You made my camel concepts clear. I am from a C++ background. I find difficult to adapt to Java and microservices world. I watched you Camel & EIP video then came here. Good job paji !! 🥰
If u can c++ then u can everything xD
Fantastic stuff!!!! Thank you, again.
Huge thanks, Saggu
Very nice!!! Great Class.
Very good explanation!! Thanks a lot for this useful much needed content.
Great! Thanks Saggu
Thank you! This was helpful
Great explanation. Thank you very much
Thank you sir!. You are AWESOME !!!
Great information, if possible can you make a route on TCP protocol, like from(tcp:..).to(http:...)
so cool! Thank you so much!
Hi Saggu, can we use spring REST instead of camel REST method in springboot camel project?
You can definitely use Spring REST alongside Camel in a Spring Boot project. The choice depends on the complexity of your REST endpoints and how much integration logic is needed. Use Spring REST for simple, straightforward APIs, and Camel REST DSL for more complex routing and integration tasks.
@Saggu can you make the video about how to make Rest calls I mean PUT,POST,DELETE using Apache Camel ?
I already have an example with POST. See here: github.com/jssaggu/camel-tutorial/blob/main/src/main/java/com/jss/camel/components/rest/RestDsl.java#L46
@@SagguUK Yes.And what about DELETE and PUT?
No .route() in camel 3.x, any idea? how to solve that?
What do you mean by there is no route() in 3.x? Can you explain a little bit more or maybe provide an example?
@@yvonnefan2998 Can you please provide the link to your project or Route class so I can check at some point?
@@SagguUK Thanks for the reply! I changed Apache Camel to version 3.0.0 and problem solved 🤣
thanks for sharing.. i need a help to implement from sftp get the file and process the same fiel to restful webservice in apache camel .. Can you please suggest how to implement
Your question is not very clear. Do you want to get a file from an ftp server, process the content and send it to a rest endpoint?
where can i get the full code?
github.com/jssaggu/camel-tutorial/
nice explained
Thanks for sharing
Thanks 😊
add the project to git hub so that user is sure he is not doing any thing wrong, i AM getting white label error and all the classes are in sub package of where my main class is
Please see the full description of the video I have linked the repo
Thanks
Plz share pom.xml for this video
I have updated the video description. Please find the link there.
Sound na ke barabar hai.. sound sahi rakho yaar
I'm sorry for the inconvenience. I have made an effort to enhance the sound quality in the latest videos. Please do let me know if you notice an improvement.
Could I please get the mail-id or contact details to communicate with you regarding my mini project
I added the following post method to JavaDsl. It doesn't work. Can you help?
from("rest:post:javadsl/weather?consumes=application/json")
.inputType(WeatherDto.class)
.process(this::saveWeatherDataAndSetToExchange);
It returns this error:
org.apache.camel.InvalidPayloadException: No body available of type: com.resutful.WeatherDto but has value: org.apache.camel.converter.stream.InputStreamCache@5901b85c of type: org.apache.camel.converter.stream.InputStreamCache on: HttpMessage@0x642d04e2.
Replace "inputType" to ".unmarshal().json(JsonLibrary.Jackson, WeatherDto.class)"
@@SagguUK yes, I had solved it, but thanks anyway🙂
Thank you! This was helpful